summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkrw <krw@openbsd.org>2007-05-25 20:32:29 +0000
committerkrw <krw@openbsd.org>2007-05-25 20:32:29 +0000
commitf70d55c339cf9fe6758574ecff1d7c5e02e607a2 (patch)
tree5d0c5ca211bc2bb8662c74f24a0e53ac417eb8ca
parentRemove y2k hack. If no century is specified, use the current one. (diff)
downloadwireguard-openbsd-f70d55c339cf9fe6758574ecff1d7c5e02e607a2.tar.xz
wireguard-openbsd-f70d55c339cf9fe6758574ecff1d7c5e02e607a2.zip
"boundries" -> "boundaries" in various comments. Started by Diego Casati.
-rw-r--r--lib/libc/arch/i386/string/bzero.S4
-rw-r--r--lib/libc/arch/i386/string/memset.S4
-rw-r--r--sys/arch/hp300/dev/hdreg.h6
-rw-r--r--sys/arch/i386/i386/locore.s4
-rw-r--r--sys/arch/i386/i386/longrun.c4
-rw-r--r--sys/lib/libkern/arch/amd64/bzero.S2
-rw-r--r--sys/lib/libkern/arch/amd64/memset.S2
-rw-r--r--sys/lib/libkern/arch/i386/bzero.S4
-rw-r--r--sys/lib/libkern/arch/i386/memset.S4
-rw-r--r--usr.bin/xinstall/xinstall.c8
10 files changed, 21 insertions, 21 deletions
diff --git a/lib/libc/arch/i386/string/bzero.S b/lib/libc/arch/i386/string/bzero.S
index 2ec9c7dd6c6..eea840afdca 100644
--- a/lib/libc/arch/i386/string/bzero.S
+++ b/lib/libc/arch/i386/string/bzero.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: bzero.S,v 1.3 2005/08/07 11:30:38 espie Exp $ */
+/* $OpenBSD: bzero.S,v 1.4 2007/05/25 20:32:29 krw Exp $ */
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
@@ -16,7 +16,7 @@ ENTRY(bzero)
/*
* if the string is too short, it's really not worth the overhead
- * of aligning to word boundries, etc. So we jump to a plain
+ * of aligning to word boundaries, etc. So we jump to a plain
* unaligned set.
*/
cmpl $16,%edx
diff --git a/lib/libc/arch/i386/string/memset.S b/lib/libc/arch/i386/string/memset.S
index 1059ccc9951..912b74a19e1 100644
--- a/lib/libc/arch/i386/string/memset.S
+++ b/lib/libc/arch/i386/string/memset.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: memset.S,v 1.3 2005/08/07 11:30:38 espie Exp $ */
+/* $OpenBSD: memset.S,v 1.4 2007/05/25 20:32:29 krw Exp $ */
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
@@ -18,7 +18,7 @@ ENTRY(memset)
/*
* if the string is too short, it's really not worth the overhead
- * of aligning to word boundries, etc. So we jump to a plain
+ * of aligning to word boundaries, etc. So we jump to a plain
* unaligned set.
*/
cmpl $0x0f,%ecx
diff --git a/sys/arch/hp300/dev/hdreg.h b/sys/arch/hp300/dev/hdreg.h
index 30a7f1f4198..b289922abec 100644
--- a/sys/arch/hp300/dev/hdreg.h
+++ b/sys/arch/hp300/dev/hdreg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: hdreg.h,v 1.5 2005/11/18 00:09:15 miod Exp $ */
+/* $OpenBSD: hdreg.h,v 1.6 2007/05/25 20:32:29 krw Exp $ */
/* $NetBSD: rdreg.h,v 1.7 1996/02/09 18:00:37 scottr Exp $ */
/*
@@ -160,8 +160,8 @@ struct hd_clearcmd {
* Several HP drives have an odd number of 256 byte sectors per track.
* This makes it rather difficult to break them into 512 and 1024 byte blocks.
* So...we just do like HPUX and don't bother to respect hardware track/head
- * boundries -- we just mold the disk so that we use the entire capacity.
- * HPUX also sometimes doen't abide by cylinder boundries, we attempt to
+ * boundaries -- we just mold the disk so that we use the entire capacity.
+ * HPUX also sometimes doen't abide by cylinder boundaries, we attempt to
* whenever possible.
*
* DISK REAL (256 BPS) HPUX (1024 BPS) BSD (512 BPS)
diff --git a/sys/arch/i386/i386/locore.s b/sys/arch/i386/i386/locore.s
index fc08292dc61..0a2736bce97 100644
--- a/sys/arch/i386/i386/locore.s
+++ b/sys/arch/i386/i386/locore.s
@@ -1,4 +1,4 @@
-/* $OpenBSD: locore.s,v 1.108 2007/04/13 11:16:08 art Exp $ */
+/* $OpenBSD: locore.s,v 1.109 2007/05/25 20:32:29 krw Exp $ */
/* $NetBSD: locore.s,v 1.145 1996/05/03 19:41:19 christos Exp $ */
/*-
@@ -2183,7 +2183,7 @@ ENTRY(bzero)
/*
* if the string is too short, it's really not worth the overhead
- * of aligning to word boundries, etc. So we jump to a plain
+ * of aligning to word boundaries, etc. So we jump to a plain
* unaligned set.
*/
cmpl $16,%edx
diff --git a/sys/arch/i386/i386/longrun.c b/sys/arch/i386/i386/longrun.c
index 89adb585ca8..1ad14787a42 100644
--- a/sys/arch/i386/i386/longrun.c
+++ b/sys/arch/i386/i386/longrun.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: longrun.c,v 1.12 2006/12/20 17:50:40 gwk Exp $ */
+/* $OpenBSD: longrun.c,v 1.13 2007/05/25 20:32:29 krw Exp $ */
/*
* Copyright (c) 2003 Ted Unangst
* Copyright (c) 2001 Tamotsu Hattori
@@ -88,7 +88,7 @@ longrun_update(void *arg)
}
/*
- * Transmeta documentation says performance window boundries
+ * Transmeta documentation says performance window boundaries
* must be between 0 and 100 or a GP0 exception is generated.
* mode is really only a bit, 0 or 1
* These values will be rounded by the CPU to within the
diff --git a/sys/lib/libkern/arch/amd64/bzero.S b/sys/lib/libkern/arch/amd64/bzero.S
index 6e4fe834d1a..b246ac9adb5 100644
--- a/sys/lib/libkern/arch/amd64/bzero.S
+++ b/sys/lib/libkern/arch/amd64/bzero.S
@@ -18,7 +18,7 @@ ENTRY(bzero)
/*
* if the string is too short, it's really not worth the overhead
- * of aligning to word boundries, etc. So we jump to a plain
+ * of aligning to word boundaries, etc. So we jump to a plain
* unaligned set.
*/
cmpq $16,%rdx
diff --git a/sys/lib/libkern/arch/amd64/memset.S b/sys/lib/libkern/arch/amd64/memset.S
index 2d92dc66534..c28b8840104 100644
--- a/sys/lib/libkern/arch/amd64/memset.S
+++ b/sys/lib/libkern/arch/amd64/memset.S
@@ -19,7 +19,7 @@ ENTRY(memset)
/*
* if the string is too short, it's really not worth the overhead
- * of aligning to word boundries, etc. So we jump to a plain
+ * of aligning to word boundaries, etc. So we jump to a plain
* unaligned set.
*/
cmpq $0x0f,%rcx
diff --git a/sys/lib/libkern/arch/i386/bzero.S b/sys/lib/libkern/arch/i386/bzero.S
index 5821f15cee4..2d1a1b1e59f 100644
--- a/sys/lib/libkern/arch/i386/bzero.S
+++ b/sys/lib/libkern/arch/i386/bzero.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: bzero.S,v 1.2 1996/09/27 06:47:45 mickey Exp $ */
+/* $OpenBSD: bzero.S,v 1.3 2007/05/25 20:32:29 krw Exp $ */
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
@@ -17,7 +17,7 @@ ENTRY(bzero)
/*
* if the string is too short, it's really not worth the overhead
- * of aligning to word boundries, etc. So we jump to a plain
+ * of aligning to word boundaries, etc. So we jump to a plain
* unaligned set.
*/
cmpl $16,%edx
diff --git a/sys/lib/libkern/arch/i386/memset.S b/sys/lib/libkern/arch/i386/memset.S
index 335de9b0bf8..46bfd06fbc2 100644
--- a/sys/lib/libkern/arch/i386/memset.S
+++ b/sys/lib/libkern/arch/i386/memset.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: memset.S,v 1.2 1996/09/27 06:47:47 mickey Exp $ */
+/* $OpenBSD: memset.S,v 1.3 2007/05/25 20:32:29 krw Exp $ */
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
@@ -19,7 +19,7 @@ ENTRY(memset)
/*
* if the string is too short, it's really not worth the overhead
- * of aligning to word boundries, etc. So we jump to a plain
+ * of aligning to word boundaries, etc. So we jump to a plain
* unaligned set.
*/
cmpl $0x0f,%ecx
diff --git a/usr.bin/xinstall/xinstall.c b/usr.bin/xinstall/xinstall.c
index 501c5e321fd..d740fae2c86 100644
--- a/usr.bin/xinstall/xinstall.c
+++ b/usr.bin/xinstall/xinstall.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: xinstall.c,v 1.44 2007/05/16 17:33:07 moritz Exp $ */
+/* $OpenBSD: xinstall.c,v 1.45 2007/05/25 20:32:29 krw Exp $ */
/* $NetBSD: xinstall.c,v 1.9 1995/12/20 10:25:17 jonathan Exp $ */
/*
@@ -40,7 +40,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)xinstall.c 8.1 (Berkeley) 7/21/93";
#endif
-static char rcsid[] = "$OpenBSD: xinstall.c,v 1.44 2007/05/16 17:33:07 moritz Exp $";
+static char rcsid[] = "$OpenBSD: xinstall.c,v 1.45 2007/05/25 20:32:29 krw Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -673,11 +673,11 @@ create_newfile(char *path, struct stat *sbp)
* uses lseek whenever it detects the input data is all 0 within that
* file block. In more detail, the strategy is as follows:
* While the input is all zero keep doing an lseek. Keep track of when we
- * pass over file block boundries. Only write when we hit a non zero
+ * pass over file block boundaries. Only write when we hit a non zero
* input. once we have written a file block, we continue to write it to
* the end (we stop looking at the input). When we reach the start of the
* next file block, start checking for zero blocks again. Working on file
- * block boundries significantly reduces the overhead when copying files
+ * block boundaries significantly reduces the overhead when copying files
* that are NOT very sparse. This overhead (when compared to a write) is
* almost below the measurement resolution on many systems. Without it,
* files with holes cannot be safely copied. It does has a side effect as