aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/leases.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/udhcp/leases.c')
-rw-r--r--networking/udhcp/leases.c2
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(
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 = '^';