Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libc/db/btree Fix typos from FreeMiNT's db-1.86 patch.



details:   https://anonhg.NetBSD.org/src/rev/79441d11696d
branches:  trunk
changeset: 789709:79441d11696d
user:      ryoon <ryoon%NetBSD.org@localhost>
date:      Wed Sep 04 13:03:22 2013 +0000

description:
Fix typos from FreeMiNT's db-1.86 patch.

diffstat:

 lib/libc/db/btree/bt_seq.c   |  6 +++---
 lib/libc/db/btree/bt_utils.c |  6 +++---
 lib/libc/db/btree/btree.h    |  4 ++--
 3 files changed, 8 insertions(+), 8 deletions(-)

diffs (72 lines):

diff -r 76424d0e1ad5 -r 79441d11696d lib/libc/db/btree/bt_seq.c
--- a/lib/libc/db/btree/bt_seq.c        Wed Sep 04 10:17:58 2013 +0000
+++ b/lib/libc/db/btree/bt_seq.c        Wed Sep 04 13:03:22 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bt_seq.c,v 1.17 2008/09/11 12:58:00 joerg Exp $        */
+/*     $NetBSD: bt_seq.c,v 1.18 2013/09/04 13:03:22 ryoon Exp $        */
 
 /*-
  * Copyright (c) 1990, 1993, 1994
@@ -37,7 +37,7 @@
 #endif
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: bt_seq.c,v 1.17 2008/09/11 12:58:00 joerg Exp $");
+__RCSID("$NetBSD: bt_seq.c,v 1.18 2013/09/04 13:03:22 ryoon Exp $");
 
 #include "namespace.h"
 #include <sys/types.h>
@@ -92,7 +92,7 @@
        }
 
        /*
-        * 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 -r 76424d0e1ad5 -r 79441d11696d lib/libc/db/btree/bt_utils.c
--- a/lib/libc/db/btree/bt_utils.c      Wed Sep 04 10:17:58 2013 +0000
+++ b/lib/libc/db/btree/bt_utils.c      Wed Sep 04 13:03:22 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bt_utils.c,v 1.13 2008/09/10 17:52:35 joerg Exp $      */
+/*     $NetBSD: bt_utils.c,v 1.14 2013/09/04 13:03:22 ryoon Exp $      */
 
 /*-
  * Copyright (c) 1990, 1993, 1994
@@ -37,7 +37,7 @@
 #endif
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: bt_utils.c,v 1.13 2008/09/10 17:52:35 joerg Exp $");
+__RCSID("$NetBSD: bt_utils.c,v 1.14 2013/09/04 13:03:22 ryoon Exp $");
 
 #include <sys/param.h>
 
@@ -74,7 +74,7 @@
        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 -r 76424d0e1ad5 -r 79441d11696d lib/libc/db/btree/btree.h
--- a/lib/libc/db/btree/btree.h Wed Sep 04 10:17:58 2013 +0000
+++ b/lib/libc/db/btree/btree.h Wed Sep 04 13:03:22 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: btree.h,v 1.16 2008/08/26 21:18:38 joerg Exp $ */
+/*     $NetBSD: btree.h,v 1.17 2013/09/04 13:03:22 ryoon Exp $ */
 
 /*-
  * Copyright (c) 1991, 1993, 1994
@@ -185,7 +185,7 @@
 #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);                                           \



Home | Main Index | Thread Index | Old Index