aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/dhcpc.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/udhcp/dhcpc.c')
-rw-r--r--networking/udhcp/dhcpc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c
index f2cf82f05..e2ddf4fb1 100644
--- a/networking/udhcp/dhcpc.c
+++ b/networking/udhcp/dhcpc.c
@@ -448,7 +448,7 @@ int udhcpc_main(int argc, char *argv[])
448 } 448 }
449 449
450 if ((message = get_option(&packet, DHCP_MESSAGE_TYPE)) == NULL) { 450 if ((message = get_option(&packet, DHCP_MESSAGE_TYPE)) == NULL) {
451 bb_error_msg("Couldnt get option from packet - ignoring"); 451 bb_error_msg("cannot get option from packet - ignoring");
452 continue; 452 continue;
453 } 453 }
454 454
@@ -467,7 +467,7 @@ int udhcpc_main(int argc, char *argv[])
467 timeout = now; 467 timeout = now;
468 packet_num = 0; 468 packet_num = 0;
469 } else { 469 } else {
470 bb_error_msg("No server ID in message"); 470 bb_error_msg("no server ID in message");
471 } 471 }
472 } 472 }
473 break; 473 break;
@@ -478,7 +478,7 @@ int udhcpc_main(int argc, char *argv[])
478 if (*message == DHCPACK) { 478 if (*message == DHCPACK) {
479 temp = get_option(&packet, DHCP_LEASE_TIME); 479 temp = get_option(&packet, DHCP_LEASE_TIME);
480 if (!temp) { 480 if (!temp) {
481 bb_error_msg("No lease time with ACK, using 1 hour lease"); 481 bb_error_msg("no lease time with ACK, using 1 hour lease");
482 lease = 60 * 60; 482 lease = 60 * 60;
483 } else { 483 } else {
484 lease = ntohl(*(uint32_t*)temp); 484 lease = ntohl(*(uint32_t*)temp);