aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--networking/udhcp/dhcpc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c
index 115cddbf0..da58a5a8e 100644
--- a/networking/udhcp/dhcpc.c
+++ b/networking/udhcp/dhcpc.c
@@ -324,7 +324,8 @@ int udhcpc_main(int argc UNUSED_PARAM, char **argv)
324 * "continue" statements in code below jump to the top of the loop. 324 * "continue" statements in code below jump to the top of the loop.
325 */ 325 */
326 for (;;) { 326 for (;;) {
327 unsigned timestamp_before_wait; 327 /* silence "uninitialized!" warning */
328 unsigned timestamp_before_wait = timestamp_before_wait;
328 329
329 //bb_error_msg("sockfd:%d, listen_mode:%d", sockfd, listen_mode); 330 //bb_error_msg("sockfd:%d, listen_mode:%d", sockfd, listen_mode);
330 331
@@ -441,7 +442,7 @@ int udhcpc_main(int argc UNUSED_PARAM, char **argv)
441 * try to find DHCP server using broadcast */ 442 * try to find DHCP server using broadcast */
442 if (timeout > 0) { 443 if (timeout > 0) {
443 /* send a request packet */ 444 /* send a request packet */
444 send_renew(xid, 0 /* INADDR_ANY*/, requested_ip); /* broadcast */ 445 send_renew(xid, 0 /*INADDR_ANY*/, requested_ip); /* broadcast */
445 timeout >>= 1; 446 timeout >>= 1;
446 continue; 447 continue;
447 } 448 }