diff options
-rw-r--r-- | networking/udhcp/dhcpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c index 6c2b112f0..dfd5ca606 100644 --- a/networking/udhcp/dhcpc.c +++ b/networking/udhcp/dhcpc.c | |||
@@ -1501,7 +1501,7 @@ int udhcpc_main(int argc UNUSED_PARAM, char **argv) | |||
1501 | packet_num = 0; | 1501 | packet_num = 0; |
1502 | continue; | 1502 | continue; |
1503 | case REQUESTING: | 1503 | case REQUESTING: |
1504 | if (!discover_retries || packet_num < discover_retries) { | 1504 | if (packet_num < 3) { |
1505 | /* send broadcast select packet */ | 1505 | /* send broadcast select packet */ |
1506 | send_select(xid, server_addr, requested_ip); | 1506 | send_select(xid, server_addr, requested_ip); |
1507 | timeout = discover_timeout; | 1507 | timeout = discover_timeout; |