Module Name: src
Committed By: andvar
Date: Fri Dec 10 19:30:05 UTC 2021
Modified Files:
src/lib/libc/gen: extattr_copy_file.3
src/share/man/man4: gpio.4
src/sys/fs/union: union_vnops.c
Log Message:
s/unaccessible/inaccessible/
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/lib/libc/gen/extattr_copy_file.3
cvs rdiff -u -r1.36 -r1.37 src/share/man/man4/gpio.4
cvs rdiff -u -r1.81 -r1.82 src/sys/fs/union/union_vnops.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/gen/extattr_copy_file.3
diff -u src/lib/libc/gen/extattr_copy_file.3:1.3 src/lib/libc/gen/extattr_copy_file.3:1.4
--- src/lib/libc/gen/extattr_copy_file.3:1.3 Thu Mar 11 01:13:11 2021
+++ src/lib/libc/gen/extattr_copy_file.3 Fri Dec 10 19:30:05 2021
@@ -1,4 +1,4 @@
-.\" $NetBSD: extattr_copy_file.3,v 1.3 2021/03/11 01:13:11 msaitoh Exp $
+.\" $NetBSD: extattr_copy_file.3,v 1.4 2021/12/10 19:30:05 andvar Exp $
.\"
.\" Copyright (c) 2001 Dima Dorfman <[email protected]>
.\" Copyright (c) 2011 Emmanuel Dreyfus <[email protected]>
@@ -76,7 +76,7 @@ respectively work the same was as
and
.Fn extattr_copy_link ,
but will copy extended attributes from all namespaces accessible to the user,
-silently skipping unaccessible namespaces.
+silently skipping inaccessible namespaces.
.Pp
Please note that none of the extended attribute copying functions are atomic.
.Sh RETURN VALUES
Index: src/share/man/man4/gpio.4
diff -u src/share/man/man4/gpio.4:1.36 src/share/man/man4/gpio.4:1.37
--- src/share/man/man4/gpio.4:1.36 Tue May 4 17:47:51 2021
+++ src/share/man/man4/gpio.4 Fri Dec 10 19:30:05 2021
@@ -1,4 +1,4 @@
-.\" $NetBSD: gpio.4,v 1.36 2021/05/04 17:47:51 christos Exp $
+.\" $NetBSD: gpio.4,v 1.37 2021/12/10 19:30:05 andvar Exp $
.\" $OpenBSD: gpio.4,v 1.5 2004/11/23 09:39:29 reyk Exp $
.\"
.\" Copyright (c) 2004 Alexander Yurchenko <[email protected]>
@@ -187,7 +187,7 @@ Only GPIO pins that have been set using
will be accessible at securelevels greater than 0.
.Pp
.It Dv GPIOUNSET ( struct gpio_set )
-Unset the specified pin, i.e. clear its name and make it unaccessible
+Unset the specified pin, i.e. clear its name and make it inaccessible
at securelevels greater than 0.
.Pp
.It Dv GPIOATTACH ( struct gpio_attach )
Index: src/sys/fs/union/union_vnops.c
diff -u src/sys/fs/union/union_vnops.c:1.81 src/sys/fs/union/union_vnops.c:1.82
--- src/sys/fs/union/union_vnops.c:1.81 Fri Dec 10 09:20:38 2021
+++ src/sys/fs/union/union_vnops.c Fri Dec 10 19:30:05 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: union_vnops.c,v 1.81 2021/12/10 09:20:38 hannken Exp $ */
+/* $NetBSD: union_vnops.c,v 1.82 2021/12/10 19:30:05 andvar Exp $ */
/*
* Copyright (c) 1992, 1993, 1994, 1995
@@ -72,7 +72,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: union_vnops.c,v 1.81 2021/12/10 09:20:38 hannken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: union_vnops.c,v 1.82 2021/12/10 19:30:05 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -775,7 +775,7 @@ union_access(void *v)
* Copy up to prevent checking (and failing) against
* underlying file system mounted read only.
* Check for read access first to prevent implicit
- * copy of unaccessible underlying vnode.
+ * copy of inaccessible underlying vnode.
*/
if (un->un_uppervp == NULLVP &&
(un->un_lowervp->v_type == VREG) &&