diff options
author | Denis Vlasenko | 2009-04-01 19:48:05 +0000 |
---|---|---|
committer | Denis Vlasenko | 2009-04-01 19:48:05 +0000 |
commit | 551ffdccea39a9223ad451954db40fd7a6e20e79 (patch) | |
tree | 0c5761879447442b166d3e7f4f414c1806a97852 /networking/udhcp/leases.c | |
parent | bd79c3d337304a96dcce4ae4f97b36143919af10 (diff) | |
download | busybox-551ffdccea39a9223ad451954db40fd7a6e20e79.zip busybox-551ffdccea39a9223ad451954db40fd7a6e20e79.tar.gz |
more of pointless whitespace fixes
Diffstat (limited to 'networking/udhcp/leases.c')
-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 d62f324..6e1398d 100644 --- a/networking/udhcp/leases.c +++ b/networking/udhcp/leases.c @@ -67,7 +67,7 @@ struct dhcpOfferedAddr* FAST_FUNC add_lease( if (hostname_length > sizeof(oldest->hostname)) hostname_length = sizeof(oldest->hostname); hostname = (uint8_t*) safe_strncpy((char*)oldest->hostname, (char*)hostname, hostname_length); - /* sanitization (s/non-ACSII/^/g) */ + /* sanitization (s/non-ASCII/^/g) */ while (*hostname) { if (*hostname < ' ' || *hostname > 126) *hostname = '^'; |