summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/arch/mips/string/bcopy.S4
-rw-r--r--lib/libc/arch/mips/string/bzero.S4
-rw-r--r--lib/libc/crypt/bcrypt.c4
-rw-r--r--lib/libc/crypt/blowfish.c4
-rw-r--r--lib/libc/db/hash/hash.h4
-rw-r--r--lib/libc/include/thread_private.h4
-rw-r--r--lib/libc/net/ipx_addr.c4
-rw-r--r--lib/libc/net/ns_addr.c4
-rw-r--r--lib/libc/net/res_random.c4
9 files changed, 18 insertions, 18 deletions
diff --git a/lib/libc/arch/mips/string/bcopy.S b/lib/libc/arch/mips/string/bcopy.S
index acf6a16c454..c899bc12100 100644
--- a/lib/libc/arch/mips/string/bcopy.S
+++ b/lib/libc/arch/mips/string/bcopy.S
@@ -38,7 +38,7 @@
#if defined(LIBC_SCCS)
.text
- .asciz "$OpenBSD: bcopy.S,v 1.4 1996/08/19 08:16:12 tholo Exp $"
+ .asciz "$OpenBSD: bcopy.S,v 1.5 2001/01/04 21:45:29 todd Exp $"
#endif /* LIBC_SCCS */
/* bcopy(s1, s2, n) */
@@ -57,7 +57,7 @@ LEAF(bcopy)
addu t1, a1, a2 # t1 = end of to region
1:
lb v0, -1(t0) # copy bytes backwards,
- subu t0, t0, 1 # doesnt happen often so do slow way
+ subu t0, t0, 1 # doesn't happen often so do slow way
subu t1, t1, 1
bne t0, a0, 1b
sb v0, 0(t1)
diff --git a/lib/libc/arch/mips/string/bzero.S b/lib/libc/arch/mips/string/bzero.S
index b27ec3358b8..5a48b003d75 100644
--- a/lib/libc/arch/mips/string/bzero.S
+++ b/lib/libc/arch/mips/string/bzero.S
@@ -38,7 +38,7 @@
#if defined(LIBC_SCCS)
.text
- .asciz "$OpenBSD: bzero.S,v 1.4 1996/08/19 08:16:13 tholo Exp $"
+ .asciz "$OpenBSD: bzero.S,v 1.5 2001/01/04 21:45:30 todd Exp $"
#endif /* LIBC_SCCS */
/* bzero(s1, n) */
@@ -59,7 +59,7 @@ LEAF(bzero)
addu a3, a3, a0 # compute ending address
2:
addu a0, a0, 4 # clear words
- bne a0, a3, 2b # unrolling loop doesnt help
+ bne a0, a3, 2b # unrolling loop doesn't help
sw zero, -4(a0) # since we are limited by memory speed
smallclr:
ble a1, zero, 2f
diff --git a/lib/libc/crypt/bcrypt.c b/lib/libc/crypt/bcrypt.c
index 99338a95080..be049baa74c 100644
--- a/lib/libc/crypt/bcrypt.c
+++ b/lib/libc/crypt/bcrypt.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bcrypt.c,v 1.13 2000/08/02 15:09:41 provos Exp $ */
+/* $OpenBSD: bcrypt.c,v 1.14 2001/01/04 21:45:30 todd Exp $ */
/*
* Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de>
@@ -237,7 +237,7 @@ bcrypt(key, salt)
/* Out of sync with passwd entry */
return error;
- /* Computer power doesnt increase linear, 2^x should be fine */
+ /* Computer power doesn't increase linear, 2^x should be fine */
if ((rounds = (u_int32_t) 1 << (logr = atoi(salt))) < BCRYPT_MINROUNDS)
return error;
diff --git a/lib/libc/crypt/blowfish.c b/lib/libc/crypt/blowfish.c
index 846cee0e8a1..695fc00a6af 100644
--- a/lib/libc/crypt/blowfish.c
+++ b/lib/libc/crypt/blowfish.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: blowfish.c,v 1.14 1999/12/28 13:09:13 provos Exp $ */
+/* $OpenBSD: blowfish.c,v 1.15 2001/01/04 21:45:30 todd Exp $ */
/*
* Blowfish block cipher for OpenBSD
* Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de>
@@ -540,7 +540,7 @@ blf_key(c, k, len)
u_int16_t len;
#endif
{
- /* Initalize S-boxes and subkeys with Pi */
+ /* Initialize S-boxes and subkeys with Pi */
Blowfish_initstate(c);
/* Transform S-boxes and subkeys with key */
diff --git a/lib/libc/db/hash/hash.h b/lib/libc/db/hash/hash.h
index 08998f3f1fa..bd96da9e137 100644
--- a/lib/libc/db/hash/hash.h
+++ b/lib/libc/db/hash/hash.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: hash.h,v 1.4 1999/02/15 05:11:24 millert Exp $ */
+/* $OpenBSD: hash.h,v 1.5 2001/01/04 21:45:30 todd Exp $ */
/*-
* Copyright (c) 1990, 1993, 1994
@@ -106,7 +106,7 @@ typedef struct htab { /* Memory resident data structure */
int cbucket; /* Current bucket */
int cndx; /* Index of next item on cpage */
int errno; /* Error Number -- for DBM
- * compatability */
+ * compatibility */
int new_file; /* Indicates if fd is backing store
* or no */
int save_file; /* Indicates whether we need to flush
diff --git a/lib/libc/include/thread_private.h b/lib/libc/include/thread_private.h
index c4c4ffe6e4c..6b04fd9f75c 100644
--- a/lib/libc/include/thread_private.h
+++ b/lib/libc/include/thread_private.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: thread_private.h,v 1.5 2000/09/08 06:11:36 brad Exp $ */
+/* $OpenBSD: thread_private.h,v 1.6 2001/01/04 21:45:30 todd Exp $ */
#ifndef _THREAD_PRIVATE_H_
#define _THREAD_PRIVATE_H_
@@ -6,7 +6,7 @@
#include <pthread.h>
/*
- * This variable is initally 0 when there is exactly one thread.
+ * This variable is initially 0 when there is exactly one thread.
* It should never decrease.
*/
extern int __isthreaded;
diff --git a/lib/libc/net/ipx_addr.c b/lib/libc/net/ipx_addr.c
index a76e03e913c..9c9fe651cd6 100644
--- a/lib/libc/net/ipx_addr.c
+++ b/lib/libc/net/ipx_addr.c
@@ -37,7 +37,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: ipx_addr.c,v 1.3 1997/07/09 01:08:39 millert Exp $";
+static char rcsid[] = "$OpenBSD: ipx_addr.c,v 1.4 2001/01/04 21:45:30 todd Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/param.h>
@@ -64,7 +64,7 @@ ipx_addr(name)
* First, figure out what he intends as a field separtor.
* Despite the way this routine is written, the prefered
* form 2-272.AA001234H.01777, i.e. XDE standard.
- * Great efforts are made to insure backward compatability.
+ * Great efforts are made to insure backward compatibility.
*/
if ((hostname = strchr(buf, '#')))
separator = '#';
diff --git a/lib/libc/net/ns_addr.c b/lib/libc/net/ns_addr.c
index 8f2e4bc513c..e44ac211957 100644
--- a/lib/libc/net/ns_addr.c
+++ b/lib/libc/net/ns_addr.c
@@ -35,7 +35,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: ns_addr.c,v 1.4 1997/07/21 20:31:05 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: ns_addr.c,v 1.5 2001/01/04 21:45:31 todd Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/param.h>
@@ -63,7 +63,7 @@ ns_addr(name)
* First, figure out what he intends as a field separtor.
* Despite the way this routine is written, the prefered
* form 2-272.AA001234H.01777, i.e. XDE standard.
- * Great efforts are made to insure backward compatability.
+ * Great efforts are made to insure backward compatibility.
*/
if ((hostname = strchr(buf, '#')))
separator = '#';
diff --git a/lib/libc/net/res_random.c b/lib/libc/net/res_random.c
index ef768a7348c..a11241246d1 100644
--- a/lib/libc/net/res_random.c
+++ b/lib/libc/net/res_random.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: res_random.c,v 1.8 1999/08/26 13:38:10 provos Exp $ */
+/* $OpenBSD: res_random.c,v 1.9 2001/01/04 21:45:31 todd Exp $ */
/*
* Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de>
@@ -125,7 +125,7 @@ pmod(gen, exp, mod)
}
/*
- * Initalizes the seed and chooses a suitable generator. Also toggles
+ * Initializes the seed and chooses a suitable generator. Also toggles
* the msb flag. The msb flag is used to generate two distinct
* cycles of random numbers and thus avoiding reuse of ids.
*