Source-Changes-HG archive

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

[src/trunk]: src s/blity/bility/ in various words, mainly in comments.



details:   https://anonhg.NetBSD.org/src/rev/7cce26943c9c
branches:  trunk
changeset: 368808:7cce26943c9c
user:      andvar <andvar%NetBSD.org@localhost>
date:      Sat Aug 06 18:26:41 2022 +0000

description:
s/blity/bility/ in various words, mainly in comments.

diffstat:

 sys/fs/adosfs/adlookup.c            |  6 +++---
 sys/fs/cd9660/cd9660_lookup.c       |  6 +++---
 sys/fs/efs/efs_vnops.c              |  6 +++---
 sys/fs/filecorefs/filecore_lookup.c |  6 +++---
 sys/fs/hfs/hfs_vnops.c              |  6 +++---
 sys/fs/msdosfs/msdosfs_lookup.c     |  6 +++---
 sys/netinet/sctp_usrreq.c           |  6 +++---
 sys/ufs/ext2fs/ext2fs_lookup.c      |  6 +++---
 sys/ufs/lfs/ulfs_lookup.c           |  6 +++---
 sys/ufs/ufs/ufs_lookup.c            |  6 +++---
 tests/dev/audio/audiotest.c         |  6 +++---
 usr.bin/ftp/util.c                  |  6 +++---
 usr.bin/mail/complete.c             |  6 +++---
 usr.sbin/cpuctl/arch/arm.c          |  6 +++---
 14 files changed, 42 insertions(+), 42 deletions(-)

diffs (truncated from 379 to 300 lines):

diff -r cc4b77d599c6 -r 7cce26943c9c sys/fs/adosfs/adlookup.c
--- a/sys/fs/adosfs/adlookup.c  Sat Aug 06 17:53:49 2022 +0000
+++ b/sys/fs/adosfs/adlookup.c  Sat Aug 06 18:26:41 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: adlookup.c,v 1.21 2020/01/17 20:08:07 ad Exp $ */
+/*     $NetBSD: adlookup.c,v 1.22 2022/08/06 18:26:41 andvar Exp $     */
 
 /*
  * Copyright (c) 1994 Christian E. Hopps
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: adlookup.c,v 1.21 2020/01/17 20:08:07 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: adlookup.c,v 1.22 2022/08/06 18:26:41 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -96,7 +96,7 @@
        nocache = 0;
 
        /*
-        * Check accessiblity of directory.
+        * Check accessibility of directory.
         */
        if ((error = VOP_ACCESS(vdp, VEXEC, ucp)) != 0)
                return (error);
diff -r cc4b77d599c6 -r 7cce26943c9c sys/fs/cd9660/cd9660_lookup.c
--- a/sys/fs/cd9660/cd9660_lookup.c     Sat Aug 06 17:53:49 2022 +0000
+++ b/sys/fs/cd9660/cd9660_lookup.c     Sat Aug 06 18:26:41 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cd9660_lookup.c,v 1.31 2020/04/04 20:49:30 ad Exp $    */
+/*     $NetBSD: cd9660_lookup.c,v 1.32 2022/08/06 18:26:41 andvar Exp $        */
 
 /*-
  * Copyright (c) 1989, 1993, 1994
@@ -39,7 +39,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cd9660_lookup.c,v 1.31 2020/04/04 20:49:30 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cd9660_lookup.c,v 1.32 2022/08/06 18:26:41 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/namei.h>
@@ -132,7 +132,7 @@
        imp = dp->i_mnt;
 
        /*
-        * Check accessiblity of directory.
+        * Check accessibility of directory.
         */
        if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
                return (error);
diff -r cc4b77d599c6 -r 7cce26943c9c sys/fs/efs/efs_vnops.c
--- a/sys/fs/efs/efs_vnops.c    Sat Aug 06 17:53:49 2022 +0000
+++ b/sys/fs/efs/efs_vnops.c    Sat Aug 06 18:26:41 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: efs_vnops.c,v 1.43 2021/07/18 23:56:13 dholland Exp $  */
+/*     $NetBSD: efs_vnops.c,v 1.44 2022/08/06 18:26:41 andvar Exp $    */
 
 /*
  * Copyright (c) 2006 Stephen M. Rumble <rumble%ephemeral.org@localhost>
@@ -17,7 +17,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: efs_vnops.c,v 1.43 2021/07/18 23:56:13 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: efs_vnops.c,v 1.44 2022/08/06 18:26:41 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -125,7 +125,7 @@
 }
 
 /*
- * Determine the accessiblity of a file based on the permissions allowed by the
+ * Determine the accessibility of a file based on the permissions allowed by the
  * specified credentials.
  *
  * Returns 0 on success.
diff -r cc4b77d599c6 -r 7cce26943c9c sys/fs/filecorefs/filecore_lookup.c
--- a/sys/fs/filecorefs/filecore_lookup.c       Sat Aug 06 17:53:49 2022 +0000
+++ b/sys/fs/filecorefs/filecore_lookup.c       Sat Aug 06 18:26:41 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: filecore_lookup.c,v 1.21 2014/10/04 13:27:24 hannken Exp $     */
+/*     $NetBSD: filecore_lookup.c,v 1.22 2022/08/06 18:26:42 andvar Exp $      */
 
 /*-
  * Copyright (c) 1989, 1993, 1994 The Regents of the University of California.
@@ -66,7 +66,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: filecore_lookup.c,v 1.21 2014/10/04 13:27:24 hannken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: filecore_lookup.c,v 1.22 2022/08/06 18:26:42 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/namei.h>
@@ -147,7 +147,7 @@
        dp = VTOI(vdp);
 
        /*
-        * Check accessiblity of directory.
+        * Check accessibility of directory.
         */
        if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
                return (error);
diff -r cc4b77d599c6 -r 7cce26943c9c sys/fs/hfs/hfs_vnops.c
--- a/sys/fs/hfs/hfs_vnops.c    Sat Aug 06 17:53:49 2022 +0000
+++ b/sys/fs/hfs/hfs_vnops.c    Sat Aug 06 18:26:41 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: hfs_vnops.c,v 1.39 2021/07/18 23:56:13 dholland Exp $  */
+/*     $NetBSD: hfs_vnops.c,v 1.40 2022/08/06 18:26:42 andvar Exp $    */
 
 /*-
  * Copyright (c) 2005, 2007 The NetBSD Foundation, Inc.
@@ -101,7 +101,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: hfs_vnops.c,v 1.39 2021/07/18 23:56:13 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: hfs_vnops.c,v 1.40 2022/08/06 18:26:42 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ipsec.h"
@@ -343,7 +343,7 @@
 
 
        /*
-        * Check accessiblity of directory.
+        * Check accessibility of directory.
         */
        if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
                return error;
diff -r cc4b77d599c6 -r 7cce26943c9c sys/fs/msdosfs/msdosfs_lookup.c
--- a/sys/fs/msdosfs/msdosfs_lookup.c   Sat Aug 06 17:53:49 2022 +0000
+++ b/sys/fs/msdosfs/msdosfs_lookup.c   Sat Aug 06 18:26:41 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: msdosfs_lookup.c,v 1.40 2021/10/23 16:58:17 thorpej Exp $      */
+/*     $NetBSD: msdosfs_lookup.c,v 1.41 2022/08/06 18:26:42 andvar Exp $       */
 
 /*-
  * Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
@@ -52,7 +52,7 @@
 #endif
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: msdosfs_lookup.c,v 1.40 2021/10/23 16:58:17 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: msdosfs_lookup.c,v 1.41 2022/08/06 18:26:42 andvar Exp $");
 
 #include <sys/param.h>
 
@@ -140,7 +140,7 @@
 #endif
 
        /*
-        * Check accessiblity of directory.
+        * Check accessibility of directory.
         */
        if ((error = VOP_ACCESS(vdp, VEXEC, cnp->cn_cred)) != 0)
                return (error);
diff -r cc4b77d599c6 -r 7cce26943c9c sys/netinet/sctp_usrreq.c
--- a/sys/netinet/sctp_usrreq.c Sat Aug 06 17:53:49 2022 +0000
+++ b/sys/netinet/sctp_usrreq.c Sat Aug 06 18:26:41 2022 +0000
@@ -1,5 +1,5 @@
 /*     $KAME: sctp_usrreq.c,v 1.50 2005/06/16 20:45:29 jinmei Exp $    */
-/*     $NetBSD: sctp_usrreq.c,v 1.21 2022/05/29 10:47:40 andvar Exp $  */
+/*     $NetBSD: sctp_usrreq.c,v 1.22 2022/08/06 18:26:42 andvar Exp $  */
 
 /*
  * Copyright (c) 2001, 2002, 2003, 2004 Cisco Systems, Inc.
@@ -33,7 +33,7 @@
  * SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sctp_usrreq.c,v 1.21 2022/05/29 10:47:40 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sctp_usrreq.c,v 1.22 2022/08/06 18:26:42 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_inet.h"
@@ -370,7 +370,7 @@
            (errno == ENOPROTOOPT)      /* SCTP is not present on host */
                ) {
                /*
-                * Hmm reachablity problems we must examine closely.
+                * Hmm reachability problems we must examine closely.
                 * If its not reachable, we may have lost a network.
                 * Or if there is NO protocol at the other end named SCTP.
                 * well we consider it a OOTB abort.
diff -r cc4b77d599c6 -r 7cce26943c9c sys/ufs/ext2fs/ext2fs_lookup.c
--- a/sys/ufs/ext2fs/ext2fs_lookup.c    Sat Aug 06 17:53:49 2022 +0000
+++ b/sys/ufs/ext2fs/ext2fs_lookup.c    Sat Aug 06 18:26:41 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ext2fs_lookup.c,v 1.91 2020/05/16 18:31:53 christos Exp $      */
+/*     $NetBSD: ext2fs_lookup.c,v 1.92 2022/08/06 18:26:42 andvar Exp $        */
 
 /*
  * Modified for NetBSD 1.2E
@@ -48,7 +48,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ext2fs_lookup.c,v 1.91 2020/05/16 18:31:53 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ext2fs_lookup.c,v 1.92 2022/08/06 18:26:42 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -313,7 +313,7 @@
        *vpp = NULL;
 
        /*
-        * Check accessiblity of directory.
+        * Check accessibility of directory.
         */
        if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
                return error;
diff -r cc4b77d599c6 -r 7cce26943c9c sys/ufs/lfs/ulfs_lookup.c
--- a/sys/ufs/lfs/ulfs_lookup.c Sat Aug 06 17:53:49 2022 +0000
+++ b/sys/ufs/lfs/ulfs_lookup.c Sat Aug 06 18:26:41 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ulfs_lookup.c,v 1.46 2020/09/05 02:55:38 riastradh Exp $       */
+/*     $NetBSD: ulfs_lookup.c,v 1.47 2022/08/06 18:26:42 andvar Exp $  */
 /*  from NetBSD: ufs_lookup.c,v 1.135 2015/07/11 11:04:48 mlelstv  */
 
 /*
@@ -38,7 +38,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ulfs_lookup.c,v 1.46 2020/09/05 02:55:38 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ulfs_lookup.c,v 1.47 2022/08/06 18:26:42 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_lfs.h"
@@ -162,7 +162,7 @@
        endsearch = 0; /* silence compiler warning */
 
        /*
-        * Check accessiblity of directory.
+        * Check accessibility of directory.
         */
        if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
                return (error);
diff -r cc4b77d599c6 -r 7cce26943c9c sys/ufs/ufs/ufs_lookup.c
--- a/sys/ufs/ufs/ufs_lookup.c  Sat Aug 06 17:53:49 2022 +0000
+++ b/sys/ufs/ufs/ufs_lookup.c  Sat Aug 06 18:26:41 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ufs_lookup.c,v 1.155 2020/09/05 02:55:39 riastradh Exp $       */
+/*     $NetBSD: ufs_lookup.c,v 1.156 2022/08/06 18:26:42 andvar Exp $  */
 
 /*
  * Copyright (c) 1989, 1993
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ufs_lookup.c,v 1.155 2020/09/05 02:55:39 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ufs_lookup.c,v 1.156 2022/08/06 18:26:42 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ffs.h"
@@ -362,7 +362,7 @@
        endsearch = 0; /* silence compiler warning */
 
        /*
-        * Check accessiblity of directory.
+        * Check accessibility of directory.
         */
        if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
                return (error);
diff -r cc4b77d599c6 -r 7cce26943c9c tests/dev/audio/audiotest.c
--- a/tests/dev/audio/audiotest.c       Sat Aug 06 17:53:49 2022 +0000
+++ b/tests/dev/audio/audiotest.c       Sat Aug 06 18:26:41 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: audiotest.c,v 1.22 2022/05/31 08:43:16 andvar Exp $    */
+/*     $NetBSD: audiotest.c,v 1.23 2022/08/06 18:26:42 andvar Exp $    */
 
 /*
  * Copyright (C) 2019 Tetsuya Isaki. All rights reserved.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: audiotest.c,v 1.22 2022/05/31 08:43:16 andvar Exp $");
+__RCSID("$NetBSD: audiotest.c,v 1.23 2022/08/06 18:26:42 andvar Exp $");
 
 #include <errno.h>
 #include <fcntl.h>
@@ -2307,7 +2307,7 @@
 }
 
 /*
- * On full-duplex hardware, the second descriptor's readablity/writability
+ * On full-duplex hardware, the second descriptor's readability/writability
  * is not depend on the first descriptor('s open mode).
  * On half-duplex hardware, it depends on the first descriptor's open mode.
  */
diff -r cc4b77d599c6 -r 7cce26943c9c usr.bin/ftp/util.c
--- a/usr.bin/ftp/util.c        Sat Aug 06 17:53:49 2022 +0000



Home | Main Index | Thread Index | Old Index