mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 21:04:56 +00:00
udhcpc: fixlet for previous commit
This commit is contained in:
parent
c321b51dc6
commit
7d9399e8dc
@ -399,12 +399,14 @@ int udhcpc_main(int argc UNUSED_PARAM, char **argv)
|
|||||||
if (state == RENEW_REQUESTED)
|
if (state == RENEW_REQUESTED)
|
||||||
udhcp_run_script(NULL, "deconfig");
|
udhcp_run_script(NULL, "deconfig");
|
||||||
change_listen_mode(LISTEN_RAW);
|
change_listen_mode(LISTEN_RAW);
|
||||||
state = INIT_SELECTING;
|
|
||||||
/* "discover...select...discover..." loops
|
/* "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 */
|
* to "no response to discover" case */
|
||||||
if (state == REQUESTING)
|
if (state == REQUESTING) {
|
||||||
|
state = INIT_SELECTING;
|
||||||
goto leasefail;
|
goto leasefail;
|
||||||
|
}
|
||||||
|
state = INIT_SELECTING;
|
||||||
timeout = 0;
|
timeout = 0;
|
||||||
packet_num = 0;
|
packet_num = 0;
|
||||||
continue;
|
continue;
|
||||||
|
Loading…
Reference in New Issue
Block a user