summaryrefslogtreecommitdiff
path: root/src/lib/libc/net/inet_net_pton.c
diff options
context:
space:
mode:
authorjmc <>2022-12-27 17:10:06 +0000
committerjmc <>2022-12-27 17:10:06 +0000
commitddf0e80229d300fb3367dd1d2ca494b2baf147a0 (patch)
treec3a822c8accd682f0e2bcf3a5ae1934ce73dcaa5 /src/lib/libc/net/inet_net_pton.c
parentec80cc02af7fb5b42ef1b159a7175ab18d7464c0 (diff)
downloadopenbsd-ddf0e80229d300fb3367dd1d2ca494b2baf147a0.tar.gz
openbsd-ddf0e80229d300fb3367dd1d2ca494b2baf147a0.tar.bz2
openbsd-ddf0e80229d300fb3367dd1d2ca494b2baf147a0.zip
spelling fixes; from paul tagliamonte
any changes not taken noted on tech, but chiefly here i did not take the cancelation - cancellation changes;
Diffstat (limited to 'src/lib/libc/net/inet_net_pton.c')
-rw-r--r--src/lib/libc/net/inet_net_pton.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/net/inet_net_pton.c b/src/lib/libc/net/inet_net_pton.c
index f9c6e7334b..c5baa4d6f4 100644
--- a/src/lib/libc/net/inet_net_pton.c
+++ b/src/lib/libc/net/inet_net_pton.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: inet_net_pton.c,v 1.13 2022/04/13 22:17:33 millert Exp $ */ 1/* $OpenBSD: inet_net_pton.c,v 1.14 2022/12/27 17:10:06 jmc Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2012 by Gilles Chehade <gilles@openbsd.org> 4 * Copyright (c) 2012 by Gilles Chehade <gilles@openbsd.org>
@@ -161,7 +161,7 @@ inet_net_pton_ipv4(const char *src, u_char *dst, size_t size)
161 goto enoent; 161 goto enoent;
162 } 162 }
163 163
164 /* Firey death and destruction unless we prefetched EOS. */ 164 /* Fiery death and destruction unless we prefetched EOS. */
165 if (ch != '\0') 165 if (ch != '\0')
166 goto enoent; 166 goto enoent;
167 167