summaryrefslogtreecommitdiff
path: root/pkgtools/libnbcompat
diff options
context:
space:
mode:
authorryoon <ryoon@pkgsrc.org>2013-09-08 12:02:03 +0000
committerryoon <ryoon@pkgsrc.org>2013-09-08 12:02:03 +0000
commitf327a9ee90280915b494820477e97f74e99eaf64 (patch)
tree40c5f2cb00dd3f3d1b4c8af8568648ed73e2c784 /pkgtools/libnbcompat
parent95ea9dcc714671bf9bc1c2554ede5a5ba0250489 (diff)
downloadpkgsrc-f327a9ee90280915b494820477e97f74e99eaf64.tar.gz
Fix typos in comment from FreeMiNT's db1 patches.
Diffstat (limited to 'pkgtools/libnbcompat')
-rw-r--r--pkgtools/libnbcompat/files/db/btree/bt_seq.c6
-rw-r--r--pkgtools/libnbcompat/files/db/btree/bt_utils.c6
-rw-r--r--pkgtools/libnbcompat/files/db/btree/btree.h4
3 files changed, 8 insertions, 8 deletions
diff --git a/pkgtools/libnbcompat/files/db/btree/bt_seq.c b/pkgtools/libnbcompat/files/db/btree/bt_seq.c
index a5508c33cd9..4a3921faaf8 100644
--- a/pkgtools/libnbcompat/files/db/btree/bt_seq.c
+++ b/pkgtools/libnbcompat/files/db/btree/bt_seq.c
@@ -1,4 +1,4 @@
-/* $NetBSD: bt_seq.c,v 1.1 2008/10/10 00:21:43 joerg Exp $ */
+/* $NetBSD: bt_seq.c,v 1.2 2013/09/08 12:02:03 ryoon Exp $ */
/* NetBSD: bt_seq.c,v 1.17 2008/09/11 12:58:00 joerg Exp */
/*-
@@ -36,7 +36,7 @@
#include <nbcompat.h>
#include <nbcompat/cdefs.h>
-__RCSID("$NetBSD: bt_seq.c,v 1.1 2008/10/10 00:21:43 joerg Exp $");
+__RCSID("$NetBSD: bt_seq.c,v 1.2 2013/09/08 12:02:03 ryoon Exp $");
#include <sys/types.h>
@@ -90,7 +90,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/pkgtools/libnbcompat/files/db/btree/bt_utils.c b/pkgtools/libnbcompat/files/db/btree/bt_utils.c
index ae1a835dca4..447e6cb6389 100644
--- a/pkgtools/libnbcompat/files/db/btree/bt_utils.c
+++ b/pkgtools/libnbcompat/files/db/btree/bt_utils.c
@@ -1,4 +1,4 @@
-/* $NetBSD: bt_utils.c,v 1.1 2008/10/10 00:21:43 joerg Exp $ */
+/* $NetBSD: bt_utils.c,v 1.2 2013/09/08 12:02:03 ryoon Exp $ */
/* NetBSD: bt_utils.c,v 1.13 2008/09/10 17:52:35 joerg Exp */
/*-
@@ -36,7 +36,7 @@
#include <nbcompat.h>
#include <nbcompat/cdefs.h>
-__RCSID("$NetBSD: bt_utils.c,v 1.1 2008/10/10 00:21:43 joerg Exp $");
+__RCSID("$NetBSD: bt_utils.c,v 1.2 2013/09/08 12:02:03 ryoon Exp $");
#include <sys/param.h>
@@ -73,7 +73,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/pkgtools/libnbcompat/files/db/btree/btree.h b/pkgtools/libnbcompat/files/db/btree/btree.h
index e8211dc0ae7..9e61042719c 100644
--- a/pkgtools/libnbcompat/files/db/btree/btree.h
+++ b/pkgtools/libnbcompat/files/db/btree/btree.h
@@ -1,4 +1,4 @@
-/* $NetBSD: btree.h,v 1.3 2008/10/28 15:06:26 joerg Exp $ */
+/* $NetBSD: btree.h,v 1.4 2013/09/08 12:02:03 ryoon Exp $ */
/* NetBSD: btree.h,v 1.16 2008/08/26 21:18:38 joerg Exp */
/*-
@@ -186,7 +186,7 @@ typedef struct _rinternal {
#define NRINTERNAL \
BTLALIGN(sizeof(recno_t) + sizeof(pgno_t))
-/* Copy a RINTERAL entry to the page. */
+/* Copy a RINTERNAL entry to the page. */
#define WR_RINTERNAL(p, nrecs, pgno) do { \
*(recno_t *)(void *)p = nrecs; \
p += sizeof(recno_t); \