diff options
| author | andvar <andvar@NetBSD.org> | 2022-08-06 18:26:41 +0000 |
|---|---|---|
| committer | andvar <andvar@NetBSD.org> | 2022-08-06 18:26:41 +0000 |
| commit | 73fcda933cbf505f9ecc523e3f9de099274f71ac (patch) | |
| tree | c9f8fe93073c1fbcf08d9e0569f505de98d969ca /sys/fs | |
| parent | 4e57996f17e3cdb8238c10e3cf1ec309ab224ed2 (diff) | |
s/blity/bility/ in various words, mainly in comments.
Diffstat (limited to 'sys/fs')
| -rw-r--r-- | sys/fs/adosfs/adlookup.c | 6 | ||||
| -rw-r--r-- | sys/fs/cd9660/cd9660_lookup.c | 6 | ||||
| -rw-r--r-- | sys/fs/efs/efs_vnops.c | 6 | ||||
| -rw-r--r-- | sys/fs/filecorefs/filecore_lookup.c | 6 | ||||
| -rw-r--r-- | sys/fs/hfs/hfs_vnops.c | 6 | ||||
| -rw-r--r-- | sys/fs/msdosfs/msdosfs_lookup.c | 6 |
6 files changed, 18 insertions, 18 deletions
diff --git a/sys/fs/adosfs/adlookup.c b/sys/fs/adosfs/adlookup.c index 2c2cf37212c..11c9c24810e 100644 --- a/sys/fs/adosfs/adlookup.c +++ b/sys/fs/adosfs/adlookup.c @@ -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 @@ adosfs_lookup(void *v) nocache = 0; /* - * Check accessiblity of directory. + * Check accessibility of directory. */ if ((error = VOP_ACCESS(vdp, VEXEC, ucp)) != 0) return (error); diff --git a/sys/fs/cd9660/cd9660_lookup.c b/sys/fs/cd9660/cd9660_lookup.c index 98dfb5bab6e..b9c6e5efa58 100644 --- a/sys/fs/cd9660/cd9660_lookup.c +++ b/sys/fs/cd9660/cd9660_lookup.c @@ -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 @@ cd9660_lookup(void *v) imp = dp->i_mnt; /* - * Check accessiblity of directory. + * Check accessibility of directory. */ if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0) return (error); diff --git a/sys/fs/efs/efs_vnops.c b/sys/fs/efs/efs_vnops.c index 262997dcc09..68685615f6e 100644 --- a/sys/fs/efs/efs_vnops.c +++ b/sys/fs/efs/efs_vnops.c @@ -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> @@ -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 @@ efs_check_possible(struct vnode *vp, struct efs_inode *eip, accmode_t accmode) } /* - * 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 --git a/sys/fs/filecorefs/filecore_lookup.c b/sys/fs/filecorefs/filecore_lookup.c index 17c99bd2c5d..20ef49ddbc8 100644 --- a/sys/fs/filecorefs/filecore_lookup.c +++ b/sys/fs/filecorefs/filecore_lookup.c @@ -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 @@ filecore_lookup(void *v) dp = VTOI(vdp); /* - * Check accessiblity of directory. + * Check accessibility of directory. */ if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0) return (error); diff --git a/sys/fs/hfs/hfs_vnops.c b/sys/fs/hfs/hfs_vnops.c index 67d91a7f98a..dcd7e03d842 100644 --- a/sys/fs/hfs/hfs_vnops.c +++ b/sys/fs/hfs/hfs_vnops.c @@ -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 @@ hfs_vop_lookup(void *v) /* - * Check accessiblity of directory. + * Check accessibility of directory. */ if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0) return error; diff --git a/sys/fs/msdosfs/msdosfs_lookup.c b/sys/fs/msdosfs/msdosfs_lookup.c index 252d1e4fe19..a941a2ddc8a 100644 --- a/sys/fs/msdosfs/msdosfs_lookup.c +++ b/sys/fs/msdosfs/msdosfs_lookup.c @@ -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 @@ msdosfs_lookup(void *v) #endif /* - * Check accessiblity of directory. + * Check accessibility of directory. */ if ((error = VOP_ACCESS(vdp, VEXEC, cnp->cn_cred)) != 0) return (error); |
