summaryrefslogtreecommitdiffstats
path: root/lib/libc/asr/getaddrinfo_async.c
diff options
context:
space:
mode:
authorkrw <krw@openbsd.org>2018-10-22 17:31:24 +0000
committerkrw <krw@openbsd.org>2018-10-22 17:31:24 +0000
commitc43131ad7f420c8af6cee2cdfbcd3f96b0d6e971 (patch)
tree1d9b9500a52d708ea5beca72031c174bf6b63eec /lib/libc/asr/getaddrinfo_async.c
parentThe recent switch to realpath(3) for the boot string in vmd(8) broke (diff)
downloadwireguard-openbsd-c43131ad7f420c8af6cee2cdfbcd3f96b0d6e971.tar.xz
wireguard-openbsd-c43131ad7f420c8af6cee2cdfbcd3f96b0d6e971.zip
More "explicitely" -> "explicitly" in various comments.
ok guenther@ tb@ deraadt@
Diffstat (limited to 'lib/libc/asr/getaddrinfo_async.c')
-rw-r--r--lib/libc/asr/getaddrinfo_async.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/asr/getaddrinfo_async.c b/lib/libc/asr/getaddrinfo_async.c
index eeaa19b4f6e..057890f56c6 100644
--- a/lib/libc/asr/getaddrinfo_async.c
+++ b/lib/libc/asr/getaddrinfo_async.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: getaddrinfo_async.c,v 1.54 2017/02/27 10:44:46 jca Exp $ */
+/* $OpenBSD: getaddrinfo_async.c,v 1.55 2018/10/22 17:31:24 krw Exp $ */
/*
* Copyright (c) 2012 Eric Faurot <eric@openbsd.org>
*
@@ -60,7 +60,7 @@ static const struct match matches[] = {
#define MATCH_FAMILY(a, b) ((a) == matches[(b)].family || (a) == PF_UNSPEC)
#define MATCH_PROTO(a, b) ((a) == matches[(b)].protocol || (a) == 0 || matches[(b)].protocol == 0)
-/* Do not match SOCK_RAW unless explicitely specified */
+/* Do not match SOCK_RAW unless explicitly specified */
#define MATCH_SOCKTYPE(a, b) ((a) == matches[(b)].socktype || ((a) == 0 && \
matches[(b)].socktype != SOCK_RAW))