diff options
author | Remy Bohmer <linux@bohmer.net> | 2008-08-20 11:30:28 +0200 |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2008-08-26 22:44:27 -0700 |
commit | 51dfe1382ebaf691485badfa0ea5e75b0710531b (patch) | |
tree | 910211cc0c078f25512c678ad91e4e605783a317 | |
parent | 61365501a0e2cae9c1df2818b7b5b3f52c450d18 (diff) | |
download | u-boot-imx-51dfe1382ebaf691485badfa0ea5e75b0710531b.zip u-boot-imx-51dfe1382ebaf691485badfa0ea5e75b0710531b.tar.gz u-boot-imx-51dfe1382ebaf691485badfa0ea5e75b0710531b.tar.bz2 |
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>
-rw-r--r-- | net/bootp.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/bootp.c b/net/bootp.c index 5121caa..64552ac 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -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; |