Skip to content
Snippets Groups Projects
Commit 51dfe138 authored by Remy Bohmer's avatar Remy Bohmer Committed by Ben Warren
Browse files

Fix bogus error message in the DHCP handler


The DHCP handler has 1 state that is not listed in this case, causing a
failure message when there is actually no failure.

Signed-off-by: default avatarRemy Bohmer <linux@bohmer.net>
Signed-off-by: default avatarBen Warren <biggerbadderben@gmail.com>
parent 61365501
No related branches found
No related tags found
No related merge requests found
......@@ -969,6 +969,9 @@ DhcpHandler(uchar * pkt, unsigned dest, unsigned src, unsigned len)
return;
}
break;
case BOUND:
/* DHCP client bound to address */
break;
default:
puts ("DHCP: INVALID STATE\n");
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment