summaryrefslogtreecommitdiff
path: root/lib/libc/db
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2022-12-27 17:10:09 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2022-12-27 17:10:09 +0000
commitcc3a47abb42f11b78ad97db92e7a89b9447bb8e9 (patch)
treefe9b394da058363f4a89f71cc700d1ff82eaa856 /lib/libc/db
parent3ee00b1421bdff3725c44ae16607a768ffaadb02 (diff)
spelling fixes; from paul tagliamonte
any changes not taken noted on tech, but chiefly here i did not take the cancelation - cancellation changes;
Diffstat (limited to 'lib/libc/db')
-rw-r--r--lib/libc/db/btree/bt_seq.c4
-rw-r--r--lib/libc/db/btree/bt_utils.c4
-rw-r--r--lib/libc/db/hash/README4
-rw-r--r--lib/libc/db/recno/rec_utils.c4
4 files changed, 8 insertions, 8 deletions
diff --git a/lib/libc/db/btree/bt_seq.c b/lib/libc/db/btree/bt_seq.c
index f67287f72dd..6da92a64c3f 100644
--- a/lib/libc/db/btree/bt_seq.c
+++ b/lib/libc/db/btree/bt_seq.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bt_seq.c,v 1.11 2005/08/05 13:03:00 espie Exp $ */
+/* $OpenBSD: bt_seq.c,v 1.12 2022/12/27 17:10:06 jmc Exp $ */
/*-
* Copyright (c) 1990, 1993, 1994
@@ -83,7 +83,7 @@ __bt_seq(const DB *dbp, DBT *key, DBT *data, u_int flags)
}
/*
- * If scan unitialized as yet, or starting at a specific record, set
+ * If scan uninitialized as yet, or starting at a specific record, set
* the scan to a specific key. Both __bt_seqset and __bt_seqadv pin
* the page the cursor references if they're successful.
*/
diff --git a/lib/libc/db/btree/bt_utils.c b/lib/libc/db/btree/bt_utils.c
index d3a66e663e7..3b20d81f2d3 100644
--- a/lib/libc/db/btree/bt_utils.c
+++ b/lib/libc/db/btree/bt_utils.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bt_utils.c,v 1.12 2021/10/24 10:05:22 jsg Exp $ */
+/* $OpenBSD: bt_utils.c,v 1.13 2022/12/27 17:10:06 jmc Exp $ */
/*-
* Copyright (c) 1990, 1993, 1994
@@ -66,7 +66,7 @@ __bt_ret(BTREE *t, EPG *e, DBT *key, DBT *rkey, DBT *data, DBT *rdata, int copy)
bl = GETBLEAF(e->page, e->index);
/*
- * We must copy big keys/data to make them contigous. Otherwise,
+ * We must copy big keys/data to make them contiguous. Otherwise,
* leave the page pinned and don't copy unless the user specified
* concurrent access.
*/
diff --git a/lib/libc/db/hash/README b/lib/libc/db/hash/README
index 3e382f29245..37358020c41 100644
--- a/lib/libc/db/hash/README
+++ b/lib/libc/db/hash/README
@@ -1,4 +1,4 @@
-# $OpenBSD: README,v 1.4 2002/02/24 21:24:06 millert Exp $
+# $OpenBSD: README,v 1.5 2022/12/27 17:10:06 jmc Exp $
This package implements a superset of the hsearch and dbm/ndbm libraries.
@@ -48,7 +48,7 @@ The man page ../man/db.3 explains the interface to the hashing system.
The file hash.ps is a postscript copy of a paper explaining
the history, implementation, and performance of the hash package.
-"bugs" or idiosyncracies
+"bugs" or idiosyncrasies
If you have a lot of overflows, it is possible to run out of overflow
pages. Currently, this will cause a message to be printed on stderr.
diff --git a/lib/libc/db/recno/rec_utils.c b/lib/libc/db/recno/rec_utils.c
index ccdd251933c..65ed822d11c 100644
--- a/lib/libc/db/recno/rec_utils.c
+++ b/lib/libc/db/recno/rec_utils.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rec_utils.c,v 1.9 2015/01/16 16:48:51 deraadt Exp $ */
+/* $OpenBSD: rec_utils.c,v 1.10 2022/12/27 17:10:06 jmc Exp $ */
/*-
* Copyright (c) 1990, 1993, 1994
* The Regents of the University of California. All rights reserved.
@@ -75,7 +75,7 @@ dataonly:
return (RET_SUCCESS);
/*
- * We must copy big keys/data to make them contigous. Otherwise,
+ * We must copy big keys/data to make them contiguous. Otherwise,
* leave the page pinned and don't copy unless the user specified
* concurrent access.
*/