diff options
author | Denys Vlasenko | 2010-01-25 13:39:24 +0100 |
---|---|---|
committer | Denys Vlasenko | 2010-01-25 13:39:24 +0100 |
commit | 3581c625151d25d8e1cbc80c44337d398d97cf42 (patch) | |
tree | 86a1abc69a3606e6f595a18d72bd1eb48bc505b3 /networking | |
parent | 46685a46bbffc04d507ce756f4b703aae024debd (diff) | |
download | busybox-3581c625151d25d8e1cbc80c44337d398d97cf42.zip busybox-3581c625151d25d8e1cbc80c44337d398d97cf42.tar.gz |
whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/ftpd.c | 4 | ||||
-rw-r--r-- | networking/traceroute.c | 2 | ||||
-rw-r--r-- | networking/udhcp/leases.c | 2 | ||||
-rw-r--r-- | networking/udhcp/script.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/networking/ftpd.c b/networking/ftpd.c index fdc6f5e..b7d5b20 100644 --- a/networking/ftpd.c +++ b/networking/ftpd.c @@ -716,7 +716,7 @@ handle_dir_common(int opts) /* STAT <filename> */ cmdio_write_raw(STR(FTP_STATFILE_OK)"-File status:\r\n"); while (1) { - line = xmalloc_fgetline(ls_fp); + line = xmalloc_fgetline(ls_fp); if (!line) break; /* Hack: 0 results in no status at all */ @@ -731,7 +731,7 @@ handle_dir_common(int opts) int remote_fd = get_remote_transfer_fd(" Directory listing"); if (remote_fd >= 0) { while (1) { - line = xmalloc_fgetline(ls_fp); + line = xmalloc_fgetline(ls_fp); if (!line) break; /* I've seen clients complaining when they diff --git a/networking/traceroute.c b/networking/traceroute.c index a30decf..2d3e770 100644 --- a/networking/traceroute.c +++ b/networking/traceroute.c @@ -364,7 +364,7 @@ wait_for_reply(len_and_sockaddr *from_lsa, struct sockaddr *to) read_len = recv_from_to(rcvsock, recv_pkt, sizeof(recv_pkt), /*flags:*/ 0, - &from_lsa->u.sa, to, from_lsa->len); + &from_lsa->u.sa, to, from_lsa->len); } return read_len; diff --git a/networking/udhcp/leases.c b/networking/udhcp/leases.c index afd41bf..78b0d0a 100644 --- a/networking/udhcp/leases.c +++ b/networking/udhcp/leases.c @@ -66,7 +66,7 @@ struct dyn_lease* FAST_FUNC add_lease( char *p; if (hostname_len > sizeof(oldest->hostname)) hostname_len = sizeof(oldest->hostname); - p = safe_strncpy(oldest->hostname, hostname, hostname_len); + p = safe_strncpy(oldest->hostname, hostname, hostname_len); /* sanitization (s/non-ASCII/^/g) */ while (*p) { if (*p < ' ' || *p > 126) diff --git a/networking/udhcp/script.c b/networking/udhcp/script.c index 065ea0c..574c74f 100644 --- a/networking/udhcp/script.c +++ b/networking/udhcp/script.c @@ -17,7 +17,7 @@ static const uint8_t len_of_option_as_string[] = { [OPTION_IP] = sizeof("255.255.255.255 "), [OPTION_IP_PAIR] = sizeof("255.255.255.255 ") * 2, - [OPTION_STATIC_ROUTES]= sizeof("255.255.255.255/32 255.255.255.255 "), + [OPTION_STATIC_ROUTES]= sizeof("255.255.255.255/32 255.255.255.255 "), [OPTION_STRING] = 1, #if ENABLE_FEATURE_UDHCP_RFC3397 [OPTION_STR1035] = 1, |