diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-01 19:48:05 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-01 19:48:05 +0000 |
commit | 551ffdccea39a9223ad451954db40fd7a6e20e79 (patch) | |
tree | 0c5761879447442b166d3e7f4f414c1806a97852 /networking | |
parent | bd79c3d337304a96dcce4ae4f97b36143919af10 (diff) | |
download | busybox-w32-551ffdccea39a9223ad451954db40fd7a6e20e79.tar.gz busybox-w32-551ffdccea39a9223ad451954db40fd7a6e20e79.tar.bz2 busybox-w32-551ffdccea39a9223ad451954db40fd7a6e20e79.zip |
more of pointless whitespace fixes
Diffstat (limited to 'networking')
-rw-r--r-- | networking/udhcp/leases.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/leases.c b/networking/udhcp/leases.c index d62f32471..6e1398d2f 100644 --- a/networking/udhcp/leases.c +++ b/networking/udhcp/leases.c | |||
@@ -67,7 +67,7 @@ struct dhcpOfferedAddr* FAST_FUNC add_lease( | |||
67 | if (hostname_length > sizeof(oldest->hostname)) | 67 | if (hostname_length > sizeof(oldest->hostname)) |
68 | hostname_length = sizeof(oldest->hostname); | 68 | hostname_length = sizeof(oldest->hostname); |
69 | hostname = (uint8_t*) safe_strncpy((char*)oldest->hostname, (char*)hostname, hostname_length); | 69 | hostname = (uint8_t*) safe_strncpy((char*)oldest->hostname, (char*)hostname, hostname_length); |
70 | /* sanitization (s/non-ACSII/^/g) */ | 70 | /* sanitization (s/non-ASCII/^/g) */ |
71 | while (*hostname) { | 71 | while (*hostname) { |
72 | if (*hostname < ' ' || *hostname > 126) | 72 | if (*hostname < ' ' || *hostname > 126) |
73 | *hostname = '^'; | 73 | *hostname = '^'; |