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

This commit is contained in:
andvar 2022-08-06 18:26:41 +00:00
parent 7322109ce6
commit 6478b40555
14 changed files with 42 additions and 42 deletions

View File

@ -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);

View File

@ -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);

View File

@ -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.

View File

@ -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);

View File

@ -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;

View File

@ -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);

View File

@ -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 @@ sctp_notify(struct sctp_inpcb *inp,
(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.

View File

@ -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 @@ ext2fs_lookup(void *v)
*vpp = NULL;
/*
* Check accessiblity of directory.
* Check accessibility of directory.
*/
if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
return error;

View File

@ -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 @@ ulfs_lookup(void *v)
endsearch = 0; /* silence compiler warning */
/*
* Check accessiblity of directory.
* Check accessibility of directory.
*/
if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
return (error);

View File

@ -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 @@ ufs_lookup(void *v)
endsearch = 0; /* silence compiler warning */
/*
* Check accessiblity of directory.
* Check accessibility of directory.
*/
if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
return (error);

View File

@ -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 @@ DEF(rdwr_fallback_RDWR) {
}
/*
* 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.
*/

View File

@ -1,4 +1,4 @@
/* $NetBSD: util.c,v 1.163 2021/08/27 17:35:03 rillig Exp $ */
/* $NetBSD: util.c,v 1.164 2022/08/06 18:26:43 andvar Exp $ */
/*-
* Copyright (c) 1997-2020 The NetBSD Foundation, Inc.
@ -64,7 +64,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: util.c,v 1.163 2021/08/27 17:35:03 rillig Exp $");
__RCSID("$NetBSD: util.c,v 1.164 2022/08/06 18:26:43 andvar Exp $");
#endif /* not lint */
/*
@ -620,7 +620,7 @@ remglob(char *argv[], int doswitch, const char **errbuf)
* return value. Can't control multiple values being expanded from the
* expression, we return only the first.
* Returns NULL on error, or a pointer to a buffer containing the filename
* that's the caller's responsiblity to free(3) when finished with.
* that's the caller's responsibility to free(3) when finished with.
*/
char *
globulize(const char *pattern)

View File

@ -1,4 +1,4 @@
/* $NetBSD: complete.c,v 1.24 2021/11/10 16:42:47 msaitoh Exp $ */
/* $NetBSD: complete.c,v 1.25 2022/08/06 18:26:43 andvar Exp $ */
/*-
* Copyright (c) 1997-2000,2005,2006 The NetBSD Foundation, Inc.
@ -37,7 +37,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: complete.c,v 1.24 2021/11/10 16:42:47 msaitoh Exp $");
__RCSID("$NetBSD: complete.c,v 1.25 2022/08/06 18:26:43 andvar Exp $");
#endif /* not lint */
/*
@ -200,7 +200,7 @@ mail_sl_add(StringList *sl, char *i)
* return value. Can't control multiple values being expanded from the
* expression, we return only the first.
* Returns NULL on error, or a pointer to a buffer containing the filename
* that's the caller's responsiblity to free(3) when finished with.
* that's the caller's responsibility to free(3) when finished with.
*/
static char *
globulize(const char *pattern)

View File

@ -1,4 +1,4 @@
/* $NetBSD: arm.c,v 1.5 2021/12/05 04:25:33 msaitoh Exp $ */
/* $NetBSD: arm.c,v 1.6 2022/08/06 18:26:43 andvar Exp $ */
/*-
* Copyright (c) 2013 The NetBSD Foundation, Inc.
@ -32,7 +32,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: arm.c,v 1.5 2021/12/05 04:25:33 msaitoh Exp $");
__RCSID("$NetBSD: arm.c,v 1.6 2022/08/06 18:26:43 andvar Exp $");
#endif /* not lint */
#include <sys/types.h>
@ -74,7 +74,7 @@ static const char * const id_mmfr_fieldnames[][8] = {
{
"VMSA-Support",
"PMSA-Support",
"Outermost-Shareablity",
"Outermost-Shareability",
"Shareability-Levels",
"TCM-Support",
"Auxiliary-Registers",