mirror of
https://xff.cz/git/u-boot/
synced 2025-09-29 22:41:17 +02: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:
@@ -969,6 +969,9 @@ DhcpHandler(uchar * pkt, unsigned dest, unsigned src, unsigned len)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case BOUND:
|
||||||
|
/* DHCP client bound to address */
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
puts ("DHCP: INVALID STATE\n");
|
puts ("DHCP: INVALID STATE\n");
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user