Source-Changes-HG archive

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

[src/trunk]: src/sys/fs/ntfs Typos:



details:   https://anonhg.NetBSD.org/src/rev/ee98bb8a1874
branches:  trunk
changeset: 805331:ee98bb8a1874
user:      maxv <maxv%NetBSD.org@localhost>
date:      Mon Dec 29 16:37:27 2014 +0000

description:
Typos:
 - "nessesary" -> "necessary" (comment)
 - "UNEXISTED" -> "NON-EXISTENT" (dprintf)
 - "NON-EXISTANT" -> "NON-EXISTENT" (dprintf)
 - "reach" -> "reaches" (comment)

diffstat:

 sys/fs/ntfs/ntfs_subr.c |  12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diffs (54 lines):

diff -r bffa500f0a78 -r ee98bb8a1874 sys/fs/ntfs/ntfs_subr.c
--- a/sys/fs/ntfs/ntfs_subr.c   Mon Dec 29 16:35:38 2014 +0000
+++ b/sys/fs/ntfs/ntfs_subr.c   Mon Dec 29 16:37:27 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ntfs_subr.c,v 1.55 2014/12/28 14:42:56 maxv Exp $      */
+/*     $NetBSD: ntfs_subr.c,v 1.56 2014/12/29 16:37:27 maxv Exp $      */
 
 /*-
  * Copyright (c) 1998, 1999 Semen Ustimenko (semenu%FreeBSD.org@localhost)
@@ -29,7 +29,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ntfs_subr.c,v 1.55 2014/12/28 14:42:56 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ntfs_subr.c,v 1.56 2014/12/29 16:37:27 maxv Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -150,7 +150,7 @@
 /*
  * Search attribute specified in ntnode (load ntnode if necessary).
  * If not found but ATTR_A_ATTRLIST present, read it in and search through.
- * VOP_VGET node needed, and lookup through its ntnode (load if nessesary).
+ * VOP_VGET node needed, and lookup through its ntnode (load if necessary).
  *
  * ntnode should be locked
  */
@@ -186,7 +186,7 @@
                return (error);
 
        if (!lvap) {
-               dprintf(("%s: UNEXISTED ATTRIBUTE: "
+               dprintf(("%s: NON-EXISTENT ATTRIBUTE: "
                    "ino: %llu, type: 0x%x, name: %s, vcn: %qu\n", __func__,
                    (unsigned long long)ip->i_number, type, name,
                    (long long)vcn));
@@ -243,7 +243,7 @@
        }
        error = ENOENT;
 
-       dprintf(("%s: NON-EXISTANT ATTRIBUTE: ino: %llu, type: 0x%x, "
+       dprintf(("%s: NON-EXISTENT ATTRIBUTE: ino: %llu, type: 0x%x, "
            "name: %.*s, vcn: %qu\n", __func__,
            (unsigned long long)ip->i_number, type, (int)namelen,
            name, (long long)vcn));
@@ -433,7 +433,7 @@
 }
 
 /*
- * Decrement usecount of ntnode and unlock it, if usecount reach zero,
+ * Decrement usecount of ntnode and unlock it, if usecount reaches zero,
  * deallocate ntnode.
  *
  * ntnode should be locked on entry, and unlocked on return.



Home | Main Index | Thread Index | Old Index