aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/dhcpc.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-09-26 22:21:03 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-09-26 22:21:03 +0000
commit7d9399e8dcfb9853f435c2936f449377d92f6e47 (patch)
tree0e2ec9897a7865937772bf76753a39fb74cc9855 /networking/udhcp/dhcpc.c
parentc321b51dc61f975625a0bfc67cf159f159ee2612 (diff)
downloadbusybox-7d9399e8dcfb9853f435c2936f449377d92f6e47.tar.gz
udhcpc: fixlet for previous commit
Diffstat (limited to 'networking/udhcp/dhcpc.c')
-rw-r--r--networking/udhcp/dhcpc.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c
index c1ef19519..8985cc705 100644
--- a/networking/udhcp/dhcpc.c
+++ b/networking/udhcp/dhcpc.c
@@ -399,12 +399,14 @@ int udhcpc_main(int argc UNUSED_PARAM, char **argv)
if (state == RENEW_REQUESTED)
udhcp_run_script(NULL, "deconfig");
change_listen_mode(LISTEN_RAW);
- state = INIT_SELECTING;
/* "discover...select...discover..." loops
- * were seen in the wild. Treat then similarly
+ * were seen in the wild. Treat them similarly
* to "no response to discover" case */
- if (state == REQUESTING)
+ if (state == REQUESTING) {
+ state = INIT_SELECTING;
goto leasefail;
+ }
+ state = INIT_SELECTING;
timeout = 0;
packet_num = 0;
continue;