diff options
author | Denis Vlasenko | 2006-10-12 19:29:44 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-12 19:29:44 +0000 |
commit | a6dbb08a48903cb8f31fad2cf2d1cffa92bd4808 (patch) | |
tree | f7f2113941a2dc0385080baa7656ead41f45f834 /networking | |
parent | 12f5676cce3b2e04668df3f18f94f1a3c7fdbb9e (diff) | |
download | busybox-a6dbb08a48903cb8f31fad2cf2d1cffa92bd4808.zip busybox-a6dbb08a48903cb8f31fad2cf2d1cffa92bd4808.tar.gz |
small style fixes
Diffstat (limited to 'networking')
-rw-r--r-- | networking/ftpgetput.c | 2 | ||||
-rw-r--r-- | networking/udhcp/dhcpc.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/networking/ftpgetput.c b/networking/ftpgetput.c index 5d13e28..47126ee 100644 --- a/networking/ftpgetput.c +++ b/networking/ftpgetput.c @@ -78,7 +78,7 @@ static FILE *ftp_login(ftp_host_info_t *server) /* Connect to the command socket */ control_stream = fdopen(xconnect(server->s_in), "r+"); if (control_stream == NULL) { - bb_perror_msg_and_die("Couldnt open control stream"); + bb_perror_msg_and_die("cannot open control stream"); } if (ftpcmd(NULL, NULL, control_stream, buf) != 220) { diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c index f2cf82f..e2ddf4f 100644 --- a/networking/udhcp/dhcpc.c +++ b/networking/udhcp/dhcpc.c @@ -448,7 +448,7 @@ int udhcpc_main(int argc, char *argv[]) } if ((message = get_option(&packet, DHCP_MESSAGE_TYPE)) == NULL) { - bb_error_msg("Couldnt get option from packet - ignoring"); + bb_error_msg("cannot get option from packet - ignoring"); continue; } @@ -467,7 +467,7 @@ int udhcpc_main(int argc, char *argv[]) timeout = now; packet_num = 0; } else { - bb_error_msg("No server ID in message"); + bb_error_msg("no server ID in message"); } } break; @@ -478,7 +478,7 @@ int udhcpc_main(int argc, char *argv[]) if (*message == DHCPACK) { temp = get_option(&packet, DHCP_LEASE_TIME); if (!temp) { - bb_error_msg("No lease time with ACK, using 1 hour lease"); + bb_error_msg("no lease time with ACK, using 1 hour lease"); lease = 60 * 60; } else { lease = ntohl(*(uint32_t*)temp); |