diff options
Diffstat (limited to 'src/lib/libc/net/inet_net_pton.c')
-rw-r--r-- | src/lib/libc/net/inet_net_pton.c | 4 |
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 | ||