summaryrefslogtreecommitdiffstats
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
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@
-rw-r--r--lib/libc/asr/asr.c4
-rw-r--r--lib/libc/asr/getaddrinfo_async.c4
-rw-r--r--lib/libcxx/utils/libcxx/test/config.py2
-rw-r--r--libexec/spamd/spamd.c4
-rw-r--r--sys/arch/m88k/m88k/m88k_machdep.c4
-rw-r--r--sys/arch/mips64/include/pmap.h4
-rw-r--r--sys/arch/mips64/mips64/fp_emulate.c4
-rw-r--r--sys/arch/mips64/mips64/pmap.c4
-rw-r--r--sys/arch/powerpc/powerpc/pmap.c4
-rw-r--r--sys/dev/ic/aic6250.c4
-rw-r--r--sys/dev/sbus/cgtwelve.c4
-rw-r--r--sys/tmpfs/tmpfs_vnops.c4
12 files changed, 23 insertions, 23 deletions
diff --git a/lib/libc/asr/asr.c b/lib/libc/asr/asr.c
index 4c39785fecf..4891470b138 100644
--- a/lib/libc/asr/asr.c
+++ b/lib/libc/asr/asr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: asr.c,v 1.60 2018/04/28 15:16:49 schwarze Exp $ */
+/* $OpenBSD: asr.c,v 1.61 2018/10/22 17:31:24 krw Exp $ */
/*
* Copyright (c) 2010-2012 Eric Faurot <eric@openbsd.org>
*
@@ -303,7 +303,7 @@ _asr_async_free(struct asr_query *as)
/*
* Get a context from the given resolver. This takes a new reference to
- * the returned context, which *must* be explicitely dropped when done
+ * the returned context, which *must* be explicitly dropped when done
* using this context.
*/
struct asr_ctx *
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))
diff --git a/lib/libcxx/utils/libcxx/test/config.py b/lib/libcxx/utils/libcxx/test/config.py
index 199ff3566d3..dbdb670460e 100644
--- a/lib/libcxx/utils/libcxx/test/config.py
+++ b/lib/libcxx/utils/libcxx/test/config.py
@@ -576,7 +576,7 @@ class Configuration(object):
self.cxx.flags += ['-arch', arch]
self.cxx.flags += ['-m' + name + '-version-min=' + version]
- # Disable availability unless explicitely requested
+ # Disable availability unless explicitly requested
if not self.with_availability:
self.cxx.flags += ['-D_LIBCPP_DISABLE_AVAILABILITY']
# FIXME(EricWF): variant_size.pass.cpp requires a slightly larger
diff --git a/libexec/spamd/spamd.c b/libexec/spamd/spamd.c
index 725510d654b..84935e9df33 100644
--- a/libexec/spamd/spamd.c
+++ b/libexec/spamd/spamd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: spamd.c,v 1.154 2018/04/26 08:57:07 beck Exp $ */
+/* $OpenBSD: spamd.c,v 1.155 2018/10/22 17:31:24 krw Exp $ */
/*
* Copyright (c) 2015 Henning Brauer <henning@openbsd.org>
@@ -471,7 +471,7 @@ spamd_tls_init()
if (tls_configure(tlsctx, tlscfg) != 0)
errx(1, "failed to configure TLS - %s", tls_error(tlsctx));
- /* set hostname to cert's CN unless explicitely given? */
+ /* set hostname to cert's CN unless explicitly given? */
}
int
diff --git a/sys/arch/m88k/m88k/m88k_machdep.c b/sys/arch/m88k/m88k/m88k_machdep.c
index 2d1d9fd670e..46a20b8f44a 100644
--- a/sys/arch/m88k/m88k/m88k_machdep.c
+++ b/sys/arch/m88k/m88k/m88k_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: m88k_machdep.c,v 1.68 2017/05/29 14:19:50 mpi Exp $ */
+/* $OpenBSD: m88k_machdep.c,v 1.69 2018/10/22 17:31:24 krw Exp $ */
/*
* Copyright (c) 1998, 1999, 2000, 2001 Steve Murphree, Jr.
* Copyright (c) 1996 Nivas Madhur
@@ -188,7 +188,7 @@ setregs(p, pack, stack, retval)
/*
* ... unless we are starting init, in which case we
* won't be returning through the regular path, and
- * need to explicitely set up nip and fip (note that
+ * need to explicitly set up nip and fip (note that
* 88110 do not need such a test).
* Note that this isn't 100% correct, as it mishandles
* a real execve() from userspace by process 1. However
diff --git a/sys/arch/mips64/include/pmap.h b/sys/arch/mips64/include/pmap.h
index 33fbc7cb094..df76f26e314 100644
--- a/sys/arch/mips64/include/pmap.h
+++ b/sys/arch/mips64/include/pmap.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.h,v 1.46 2016/12/22 15:33:36 visa Exp $ */
+/* $OpenBSD: pmap.h,v 1.47 2018/10/22 17:31:25 krw Exp $ */
/*
* Copyright (c) 1987 Carnegie-Mellon University
@@ -132,7 +132,7 @@ typedef struct pmap {
(sizeof(struct pmap_asid_info) * ((x) - 1))))
/* machine-dependent pg_flags */
-#define PGF_UNCACHED PG_PMAP0 /* Page is explicitely uncached */
+#define PGF_UNCACHED PG_PMAP0 /* Page is explicitly uncached */
#define PGF_CACHED PG_PMAP1 /* Page is currently cached */
#define PGF_ATTR_MOD PG_PMAP2
#define PGF_ATTR_REF PG_PMAP3
diff --git a/sys/arch/mips64/mips64/fp_emulate.c b/sys/arch/mips64/mips64/fp_emulate.c
index 8d1bc8eebfc..cb497b85e7f 100644
--- a/sys/arch/mips64/mips64/fp_emulate.c
+++ b/sys/arch/mips64/mips64/fp_emulate.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fp_emulate.c,v 1.19 2017/09/16 05:04:34 visa Exp $ */
+/* $OpenBSD: fp_emulate.c,v 1.20 2018/10/22 17:31:25 krw Exp $ */
/*
* Copyright (c) 2010 Miodrag Vallat.
@@ -579,7 +579,7 @@ fpu_emulate_cop1(struct proc *p, struct trapframe *tf, uint32_t insn)
/*
* Check for valid format. FRType assumes bit 25 is always set,
- * so we need to check for it explicitely.
+ * so we need to check for it explicitly.
*/
if ((insn & (1 << 25)) == 0)
diff --git a/sys/arch/mips64/mips64/pmap.c b/sys/arch/mips64/mips64/pmap.c
index 48ae996fde2..876434c3ec5 100644
--- a/sys/arch/mips64/mips64/pmap.c
+++ b/sys/arch/mips64/mips64/pmap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.c,v 1.110 2018/05/09 14:42:11 visa Exp $ */
+/* $OpenBSD: pmap.c,v 1.111 2018/10/22 17:31:25 krw Exp $ */
/*
* Copyright (c) 2001-2004 Opsycon AB (www.opsycon.se / www.opsycon.com)
@@ -1856,7 +1856,7 @@ pmap_enter_pv(pmap_t pmap, vaddr_t va, vm_page_t pg, pt_entry_t *npte)
if ((pg->pg_flags & PGF_CACHED) == 0) {
/*
* If page is not mapped cached it's either because
- * an uncached mapping was explicitely requested or
+ * an uncached mapping was explicitly requested or
* we have a VAC situation.
* Map this page uncached as well.
*/
diff --git a/sys/arch/powerpc/powerpc/pmap.c b/sys/arch/powerpc/powerpc/pmap.c
index 2adb27d3f4b..e85e69785ca 100644
--- a/sys/arch/powerpc/powerpc/pmap.c
+++ b/sys/arch/powerpc/powerpc/pmap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.c,v 1.167 2017/05/16 20:52:54 kettenis Exp $ */
+/* $OpenBSD: pmap.c,v 1.168 2018/10/22 17:31:25 krw Exp $ */
/*
* Copyright (c) 2015 Martin Pieuchot
@@ -1086,7 +1086,7 @@ pmap_zero_page(struct vm_page *pg)
/*
* Loop over & zero cache lines. This code assumes that 64-bit
- * CPUs have 128-byte cache lines. We explicitely use ``dcbzl''
+ * CPUs have 128-byte cache lines. We explicitly use ``dcbzl''
* here because we do not clear the DCBZ_SIZE bit of the HID5
* register in order to be compatible with code using ``dcbz''
* and assuming that cache line size is 32.
diff --git a/sys/dev/ic/aic6250.c b/sys/dev/ic/aic6250.c
index 23297285bc9..cf573926e89 100644
--- a/sys/dev/ic/aic6250.c
+++ b/sys/dev/ic/aic6250.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: aic6250.c,v 1.4 2017/09/08 05:36:52 deraadt Exp $ */
+/* $OpenBSD: aic6250.c,v 1.5 2018/10/22 17:31:25 krw Exp $ */
/*
* Copyright (c) 2010, 2013 Miodrag Vallat.
@@ -1088,7 +1088,7 @@ out:
AIC_MISC(("n=%d imess=0x%02x ", n, sc->sc_imess[0]));
/*
- * We need to explicitely un-busy.
+ * We need to explicitly un-busy.
*/
(*sc->sc_write)(sc, AIC_SCSI_SIGNAL_REG,
(*sc->sc_read)(sc, AIC_SCSI_SIGNAL_REG) &
diff --git a/sys/dev/sbus/cgtwelve.c b/sys/dev/sbus/cgtwelve.c
index 3caede633b1..7ab972a9a00 100644
--- a/sys/dev/sbus/cgtwelve.c
+++ b/sys/dev/sbus/cgtwelve.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cgtwelve.c,v 1.8 2013/10/20 20:07:30 miod Exp $ */
+/* $OpenBSD: cgtwelve.c,v 1.9 2018/10/22 17:31:25 krw Exp $ */
/*
* Copyright (c) 2002, 2003 Miodrag Vallat. All rights reserved.
@@ -41,7 +41,7 @@
* 8 bit and 24 bit color), and a lot of colormap combinations.
*
* All of this is driven by a set of three Bt462 ramdacs (latched unless
- * explicitely programmed), and a couple of other Matrox-specific chips.
+ * explicitly programmed), and a couple of other Matrox-specific chips.
*
* XXX The high res card is untested.
*/
diff --git a/sys/tmpfs/tmpfs_vnops.c b/sys/tmpfs/tmpfs_vnops.c
index 6615a1951bd..8b5c7a76b46 100644
--- a/sys/tmpfs/tmpfs_vnops.c
+++ b/sys/tmpfs/tmpfs_vnops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmpfs_vnops.c,v 1.32 2018/06/07 13:37:28 visa Exp $ */
+/* $OpenBSD: tmpfs_vnops.c,v 1.33 2018/10/22 17:31:25 krw Exp $ */
/* $NetBSD: tmpfs_vnops.c,v 1.100 2012/11/05 17:27:39 dholland Exp $ */
/*
@@ -289,7 +289,7 @@ done:
out:
/*
* If (1) we succeded, (2) found a distinct vnode to return and (3) were
- * either explicitely told to keep the parent locked or are in the
+ * either explicitly told to keep the parent locked or are in the
* middle of a lookup, unlock the parent vnode.
*/
if ((error == 0 || error == EJUSTRETURN) && /* (1) */