mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-06 09:21:26 +01:00
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: Remy Bohmer <linux@bohmer.net> Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
This commit is contained in:
parent
61365501a0
commit
51dfe1382e
1 changed files with 3 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue