Explicitly mention that PATH_MAX includes the NUL in the ENAMETOOLONG
authormillert <millert@openbsd.org>
Mon, 19 Jan 2015 15:54:11 +0000 (15:54 +0000)
committermillert <millert@openbsd.org>
Mon, 19 Jan 2015 15:54:11 +0000 (15:54 +0000)
description.

32 files changed:
lib/libc/gen/statvfs.3
lib/libc/gen/utime.3
lib/libc/sys/access.2
lib/libc/sys/acct.2
lib/libc/sys/bind.2
lib/libc/sys/chdir.2
lib/libc/sys/chflags.2
lib/libc/sys/chmod.2
lib/libc/sys/chown.2
lib/libc/sys/chroot.2
lib/libc/sys/connect.2
lib/libc/sys/execve.2
lib/libc/sys/getfh.2
lib/libc/sys/ktrace.2
lib/libc/sys/link.2
lib/libc/sys/mkdir.2
lib/libc/sys/mkfifo.2
lib/libc/sys/mknod.2
lib/libc/sys/open.2
lib/libc/sys/pathconf.2
lib/libc/sys/quotactl.2
lib/libc/sys/readlink.2
lib/libc/sys/rename.2
lib/libc/sys/revoke.2
lib/libc/sys/rmdir.2
lib/libc/sys/stat.2
lib/libc/sys/statfs.2
lib/libc/sys/swapctl.2
lib/libc/sys/symlink.2
lib/libc/sys/truncate.2
lib/libc/sys/unlink.2
lib/libc/sys/utimes.2

index c0ab284..225eee2 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: statvfs.3,v 1.6 2013/06/05 03:39:22 tedu Exp $
+.\"    $OpenBSD: statvfs.3,v 1.7 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: statfs.2,v 1.10 1995/06/29 11:40:48 cgd Exp $
 .\"
 .\" Copyright (c) 1989, 1991, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"    @(#)statfs.2    8.3 (Berkeley) 2/11/94
 .\"
-.Dd $Mdocdate: June 5 2013 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt STATVFS 3
 .Os
 .Sh NAME
@@ -93,15 +93,12 @@ A component of the path prefix of
 .Fa path
 is not a directory.
 .It Bq Er ENAMETOOLONG
-The length of a component of
-.Fa path
-exceeds
-.Dv {NAME_MAX}
-characters, or the length of
-.Fa path
-exceeds
-.Dv {PATH_MAX}
-characters.
+A component of a pathname exceeded
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The file referred to by
 .Fa path
index 9395ca9..9a1c2f0 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: utime.3,v 1.20 2014/01/21 03:15:45 schwarze Exp $
+.\"    $OpenBSD: utime.3,v 1.21 2015/01/19 15:54:11 millert Exp $
 .\"
 .\" Copyright (c) 1980, 1991, 1993
 .\"    The Regents of the University of California.  All rights reserved.
@@ -27,7 +27,7 @@
 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 .\" SUCH DAMAGE.
 .\"
-.Dd $Mdocdate: January 21 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt UTIME 3
 .Os
 .Sh NAME
@@ -115,8 +115,12 @@ error occurred while reading or writing the affected inode.
 .It Bq Er ELOOP
 Too many symbolic links were encountered in translating the pathname.
 .It Bq Er ENAMETOOLONG
-A component of a pathname exceeded 255 characters,
-or an entire path name exceeded 1023 characters.
+A component of a pathname exceeded
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The named file does not exist.
 .It Bq Er ENOTDIR
index ba655d0..38b7ef3 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: access.2,v 1.24 2014/12/14 07:42:50 schwarze Exp $
+.\"    $OpenBSD: access.2,v 1.25 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: access.2,v 1.7 1995/02/27 12:31:44 cgd Exp $
 .\"
 .\" Copyright (c) 1980, 1991, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)access.2   8.2 (Berkeley) 4/1/94
 .\"
-.Dd $Mdocdate: December 14 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt ACCESS 2
 .Os
 .Sh NAME
@@ -135,10 +135,11 @@ Access to the file is denied if:
 A component of the path prefix is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The named file does not exist.
 .It Bq Er ELOOP
index 0ca5b75..3b98446 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: acct.2,v 1.16 2014/12/10 19:19:00 schwarze Exp $
+.\"    $OpenBSD: acct.2,v 1.17 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: acct.2,v 1.6 1995/02/27 12:31:47 cgd Exp $
 .\"
 .\" Copyright (c) 1980, 1991, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)acct.2     8.1 (Berkeley) 6/4/93
 .\"
-.Dd $Mdocdate: December 10 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt ACCT 2
 .Os
 .Sh NAME
@@ -88,10 +88,11 @@ The caller is not the superuser.
 A component of the path prefix is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The named file does not exist.
 .It Bq Er EACCES
index d7df8ec..f70856d 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: bind.2,v 1.19 2014/12/10 07:18:44 guenther Exp $
+.\"    $OpenBSD: bind.2,v 1.20 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: bind.2,v 1.8 1995/10/12 15:40:46 jtc Exp $
 .\"
 .\" Copyright (c) 1983, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)bind.2     8.1 (Berkeley) 6/4/93
 .\"
-.Dd $Mdocdate: December 10 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt BIND 2
 .Os
 .Sh NAME
@@ -106,10 +106,11 @@ The following errors are specific to binding names in the
 A component of the path prefix is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 A prefix component of the path name does not exist.
 .It Bq Er ELOOP
index e07f7d8..0afd904 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: chdir.2,v 1.12 2014/12/10 19:19:00 schwarze Exp $
+.\"    $OpenBSD: chdir.2,v 1.13 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: chdir.2,v 1.7 1995/02/27 12:32:00 cgd Exp $
 .\"
 .\" Copyright (c) 1980, 1991, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)chdir.2    8.2 (Berkeley) 12/11/93
 .\"
-.Dd $Mdocdate: December 10 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt CHDIR 2
 .Os
 .Sh NAME
@@ -76,10 +76,11 @@ one or more of the following are true:
 A component of the path prefix is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The named directory does not exist.
 .It Bq Er ELOOP
index 749537c..d6b3008 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: chflags.2,v 1.26 2014/12/16 00:06:49 schwarze Exp $
+.\"    $OpenBSD: chflags.2,v 1.27 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: chflags.2,v 1.6 1995/02/27 12:32:03 cgd Exp $
 .\"
 .\" Copyright (c) 1989, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"    @(#)chflags.2   8.1 (Berkeley) 6/9/93
 .\"
-.Dd $Mdocdate: December 16 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt CHFLAGS 2
 .Os
 .Sh NAME
@@ -145,10 +145,11 @@ will fail if:
 A component of the path prefix is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The named file does not exist.
 .It Bq Er EACCES
index c450f98..44eced0 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: chmod.2,v 1.26 2014/12/10 19:19:00 schwarze Exp $
+.\"    $OpenBSD: chmod.2,v 1.27 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: chmod.2,v 1.7 1995/02/27 12:32:06 cgd Exp $
 .\"
 .\" Copyright (c) 1980, 1991, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)chmod.2    8.1 (Berkeley) 6/4/93
 .\"
-.Dd $Mdocdate: December 10 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt CHMOD 2
 .Os
 .Sh NAME
@@ -164,10 +164,11 @@ functions will fail and the file mode will be unchanged if:
 A component of the path prefix is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The named file does not exist.
 .It Bq Er EACCES
index 7eec007..e683cbc 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: chown.2,v 1.24 2014/12/10 19:19:00 schwarze Exp $
+.\"    $OpenBSD: chown.2,v 1.25 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: chown.2,v 1.10 1995/10/12 15:40:47 jtc Exp $
 .\"
 .\" Copyright (c) 1980, 1991, 1993, 1994
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)chown.2    8.4 (Berkeley) 4/19/94
 .\"
-.Dd $Mdocdate: December 10 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt CHOWN 2
 .Os
 .Sh NAME
@@ -148,10 +148,11 @@ will fail and the file or link will be unchanged if:
 A component of the path prefix is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The named file does not exist.
 .It Bq Er EACCES
index d7e31f6..d1d0292 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: chroot.2,v 1.20 2014/12/16 00:06:49 schwarze Exp $
+.\"    $OpenBSD: chroot.2,v 1.21 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: chroot.2,v 1.7 1995/02/27 12:32:12 cgd Exp $
 .\"
 .\" Copyright (c) 1983, 1991, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)chroot.2   8.1 (Berkeley) 6/4/93
 .\"
-.Dd $Mdocdate: December 16 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt CHROOT 2
 .Os
 .Sh NAME
@@ -88,10 +88,11 @@ will fail and the root directory will be unchanged if:
 A component of the path name is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The named directory does not exist.
 .It Bq Er EACCES
index 8bb8f69..b3d9970 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: connect.2,v 1.24 2013/07/17 05:42:11 schwarze Exp $
+.\"    $OpenBSD: connect.2,v 1.25 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: connect.2,v 1.8 1995/10/12 15:40:48 jtc Exp $
 .\"
 .\" Copyright (c) 1983, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)connect.2  8.1 (Berkeley) 6/4/93
 .\"
-.Dd $Mdocdate: July 17 2013 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt CONNECT 2
 .Os
 .Sh NAME
@@ -142,10 +142,11 @@ IPC domain.
 A component of the path prefix is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The named socket does not exist.
 .It Bq Er EACCES
index 4e8e215..0d61267 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: execve.2,v 1.41 2014/05/30 04:38:43 guenther Exp $
+.\"    $OpenBSD: execve.2,v 1.42 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: execve.2,v 1.9 1995/02/27 12:32:25 cgd Exp $
 .\"
 .\" Copyright (c) 1980, 1991, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)execve.2   8.3 (Berkeley) 1/24/94
 .\"
-.Dd $Mdocdate: May 30 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt EXECVE 2
 .Os
 .Sh NAME
@@ -249,10 +249,11 @@ will fail and return to the calling process if:
 A component of the path prefix is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The new process file does not exist.
 .It Bq Er ELOOP
index fb2ddfd..68051d0 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: getfh.2,v 1.17 2014/12/16 00:06:49 schwarze Exp $
+.\"    $OpenBSD: getfh.2,v 1.18 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: getfh.2,v 1.7 1995/10/12 15:40:53 jtc Exp $
 .\"
 .\" Copyright (c) 1989, 1991, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"    @(#)getfh.2     8.1 (Berkeley) 6/9/93
 .\"
-.Dd $Mdocdate: December 16 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt GETFH 2
 .Os
 .Sh NAME
@@ -59,15 +59,12 @@ A component of the path prefix of
 .Fa path
 is not a directory.
 .It Bq Er ENAMETOOLONG
-The length of a component of
-.Fa path
-exceeds
-.Dv {NAME_MAX}
-characters, or the length of
-.Fa path
-exceeds
-.Dv {PATH_MAX}
-characters.
+A component of a pathname exceeded
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The file referred to by
 .Fa path
index f932969..895b623 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: ktrace.2,v 1.26 2014/12/14 07:42:50 schwarze Exp $
+.\"    $OpenBSD: ktrace.2,v 1.27 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: ktrace.2,v 1.2 1995/02/27 12:33:58 cgd Exp $
 .\"
 .\" Copyright (c) 1993
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)ktrace.2   8.1 (Berkeley) 6/4/93
 .\"
-.Dd $Mdocdate: December 14 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt KTRACE 2
 .Os
 .Sh NAME
@@ -172,8 +172,12 @@ A component of the path prefix is not a directory.
 .It Bq Er EINVAL
 No trace points were selected.
 .It Bq Er ENAMETOOLONG
-A component of a pathname exceeded 255 characters,
-or an entire path name exceeded 1023 characters.
+A component of a pathname exceeded
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The named tracefile does not exist.
 .It Bq Er EACCES
index 128a3db..4aa204e 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: link.2,v 1.27 2014/12/10 19:19:00 schwarze Exp $
+.\"    $OpenBSD: link.2,v 1.28 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: link.2,v 1.7 1995/02/27 12:34:01 cgd Exp $
 .\"
 .\" Copyright (c) 1980, 1991, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)link.2     8.3 (Berkeley) 1/12/94
 .\"
-.Dd $Mdocdate: December 10 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt LINK 2
 .Os
 .Sh NAME
@@ -138,10 +138,11 @@ will fail and no link will be created if:
 A component of either path prefix is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 A component of either path prefix does not exist.
 .It Bq Er EOPNOTSUPP
index 2a6dd7c..687a2b3 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: mkdir.2,v 1.15 2014/12/10 19:19:00 schwarze Exp $
+.\"    $OpenBSD: mkdir.2,v 1.16 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: mkdir.2,v 1.8 1995/02/27 12:34:22 cgd Exp $
 .\"
 .\" Copyright (c) 1983, 1991, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)mkdir.2    8.2 (Berkeley) 12/11/93
 .\"
-.Dd $Mdocdate: December 10 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt MKDIR 2
 .Os
 .Sh NAME
@@ -93,10 +93,11 @@ will fail and no directory will be created if:
 A component of the path prefix is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 A component of the path prefix does not exist.
 .It Bq Er EACCES
index cf1b462..88027cc 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: mkfifo.2,v 1.13 2014/12/16 00:06:49 schwarze Exp $
+.\"    $OpenBSD: mkfifo.2,v 1.14 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: mkfifo.2,v 1.8 1995/02/27 12:34:27 cgd Exp $
 .\"
 .\" Copyright (c) 1990, 1991, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"    @(#)mkfifo.2    8.1 (Berkeley) 6/4/93
 .\"
-.Dd $Mdocdate: December 16 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt MKFIFO 2
 .Os
 .Sh NAME
@@ -97,10 +97,11 @@ The kernel has not been configured to support FIFOs.
 A component of the path prefix is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 A component of the path prefix does not exist.
 .It Bq Er EACCES
index b650167..d69315f 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: mknod.2,v 1.19 2014/10/26 05:45:43 guenther Exp $
+.\"    $OpenBSD: mknod.2,v 1.20 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: mknod.2,v 1.6 1995/02/27 12:34:33 cgd Exp $
 .\"
 .\" Copyright (c) 1980, 1991, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)mknod.2    8.1 (Berkeley) 6/4/93
 .\"
-.Dd $Mdocdate: October 26 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt MKNOD 2
 .Os
 .Sh NAME
@@ -120,10 +120,11 @@ is an invalid value for that file type.
 A component of the path prefix is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 A component of the path prefix does not exist.
 .It Bq Er EACCES
index 742d28d..e92cd70 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: open.2,v 1.48 2014/11/25 15:02:13 schwarze Exp $
+.\"    $OpenBSD: open.2,v 1.49 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: open.2,v 1.8 1995/02/27 12:35:14 cgd Exp $
 .\"
 .\" Copyright (c) 1980, 1991, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)open.2     8.2 (Berkeley) 11/16/93
 .\"
-.Dd $Mdocdate: November 25 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt OPEN 2
 .Os
 .Sh NAME
@@ -244,10 +244,11 @@ is specified and
 does not name a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 .Dv O_CREAT
 is not set and the named file does not exist.
index dd9c72c..ad345d7 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: pathconf.2,v 1.21 2014/01/21 03:15:45 schwarze Exp $
+.\"    $OpenBSD: pathconf.2,v 1.22 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: pathconf.2,v 1.2 1995/02/27 12:35:22 cgd Exp $
 .\"
 .\" Copyright (c) 1993
@@ -30,7 +30,7 @@
 .\"
 .\"    @(#)pathconf.2  8.1 (Berkeley) 6/4/93
 .\"
-.Dd $Mdocdate: January 21 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt PATHCONF 2
 .Os
 .Sh NAME
@@ -172,12 +172,13 @@ will fail if:
 A component of the path prefix is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Brq Dv NAME_MAX
+.Dv NAME_MAX
 characters (but see
 .Dv _PC_NO_TRUNC
-above), or an entire path name exceeded
-.Brq Dv PATH_MAX
-characters.
+above), or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The named file does not exist.
 .It Bq Er EACCES
index a3393eb..89ec2eb 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: quotactl.2,v 1.14 2014/12/16 00:06:49 schwarze Exp $
+.\"    $OpenBSD: quotactl.2,v 1.15 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: quotactl.2,v 1.8 1995/02/27 12:35:43 cgd Exp $
 .\"
 .\" Copyright (c) 1983, 1990, 1991, 1993
@@ -33,7 +33,7 @@
 .\"
 .\"    @(#)quotactl.2  8.1 (Berkeley) 6/4/93
 .\"
-.Dd $Mdocdate: December 16 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt QUOTACTL 2
 .Os
 .Sh NAME
@@ -165,10 +165,11 @@ Search permission is denied for a component of a path prefix.
 A component of a path prefix was not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 A filename does not exist.
 .It Bq Er ELOOP
index 9f12e97..376b9a7 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: readlink.2,v 1.17 2014/09/01 05:09:52 doug Exp $
+.\"    $OpenBSD: readlink.2,v 1.18 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: readlink.2,v 1.7 1995/02/27 12:35:54 cgd Exp $
 .\"
 .\" Copyright (c) 1983, 1991, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)readlink.2 8.1 (Berkeley) 6/4/93
 .\"
-.Dd $Mdocdate: September 1 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt READLINK 2
 .Os
 .Sh NAME
@@ -98,10 +98,11 @@ will fail if:
 A component of the path prefix is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The named file does not exist.
 .It Bq Er EACCES
index a589430..a7dabaa 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: rename.2,v 1.20 2014/12/10 19:19:00 schwarze Exp $
+.\"    $OpenBSD: rename.2,v 1.21 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: rename.2,v 1.7 1995/02/27 12:36:15 cgd Exp $
 .\"
 .\" Copyright (c) 1983, 1991, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)rename.2   8.1 (Berkeley) 6/4/93
 .\"
-.Dd $Mdocdate: December 10 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt RENAME 2
 .Os
 .Sh NAME
@@ -118,10 +118,11 @@ affected if:
 .Bl -tag -width Er
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 A component of the
 .Fa from
index 6f98990..9c380a7 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: revoke.2,v 1.10 2014/12/10 19:19:00 schwarze Exp $
+.\"    $OpenBSD: revoke.2,v 1.11 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: revoke.2,v 1.3 1995/10/12 15:41:11 jtc Exp $
 .\"
 .\" Copyright (c) 1993
@@ -33,7 +33,7 @@
 .\"
 .\"     @(#)revoke.2   8.1 (Berkeley) 6/4/93
 .\"
-.Dd $Mdocdate: December 10 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt REVOKE 2
 .Os
 .Sh NAME
@@ -74,8 +74,12 @@ Access to the named file is revoked unless one of the following:
 .It Bq Er ENOTDIR
 A component of the path prefix is not a directory.
 .It Bq Er ENAMETOOLONG
-A component of a pathname exceeded 255 characters,
-or an entire path name exceeded 1024 characters.
+A component of a pathname exceeded
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The named file or a component of the path name does not exist.
 .It Bq Er EACCES
index cbfbfc5..02f9947 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: rmdir.2,v 1.12 2014/09/09 07:36:42 guenther Exp $
+.\"    $OpenBSD: rmdir.2,v 1.13 2015/01/19 15:54:11 millert Exp $
 .\"    $NetBSD: rmdir.2,v 1.7 1995/02/27 12:36:30 cgd Exp $
 .\"
 .\" Copyright (c) 1983, 1991, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)rmdir.2    8.1 (Berkeley) 6/4/93
 .\"
-.Dd $Mdocdate: September 9 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt RMDIR 2
 .Os
 .Sh NAME
@@ -69,10 +69,11 @@ The named file is removed unless:
 A component of the path is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The named directory does not exist.
 .It Bq Er ELOOP
index 7fa0f68..70fb506 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: stat.2,v 1.43 2014/12/10 19:19:00 schwarze Exp $
+.\"    $OpenBSD: stat.2,v 1.44 2015/01/19 15:54:11 millert Exp $
 .\"
 .\" Copyright (c) 1980, 1991, 1993, 1994
 .\"    The Regents of the University of California.  All rights reserved.
@@ -29,7 +29,7 @@
 .\"
 .\"     @(#)stat.2     8.3 (Berkeley) 4/19/94
 .\"
-.Dd $Mdocdate: December 10 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt STAT 2
 .Os
 .Sh NAME
@@ -296,9 +296,10 @@ A component of the path prefix is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
 .Dv NAME_MAX
-characters, or an entire path name exceeded
+characters, or an entire pathname (including the terminating NUL)
+exceeded
 .Dv PATH_MAX
-characters.
+bytes.
 .It Bq Er ENOENT
 A component of
 .Em name
index c1e576f..de9d6d5 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: statfs.2,v 1.24 2014/12/16 00:06:49 schwarze Exp $
+.\"    $OpenBSD: statfs.2,v 1.25 2015/01/19 15:54:12 millert Exp $
 .\"    $NetBSD: statfs.2,v 1.10 1995/06/29 11:40:48 cgd Exp $
 .\"
 .\" Copyright (c) 1989, 1991, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"    @(#)statfs.2    8.3 (Berkeley) 2/11/94
 .\"
-.Dd $Mdocdate: December 16 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt STATFS 2
 .Os
 .Sh NAME
@@ -109,15 +109,12 @@ A component of the path prefix of
 .Fa path
 is not a directory.
 .It Bq Er ENAMETOOLONG
-The length of a component of
-.Fa path
-exceeds
-.Dv {NAME_MAX}
-characters, or the length of
-.Fa path
-exceeds
-.Dv {PATH_MAX}
-characters.
+A component of a pathname exceeded
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The file referred to by
 .Fa path
index d2b9060..463c8f7 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: swapctl.2,v 1.20 2014/12/13 10:27:50 schwarze Exp $
+.\"    $OpenBSD: swapctl.2,v 1.21 2015/01/19 15:54:12 millert Exp $
 .\"    $NetBSD: swapctl.2,v 1.10 1998/08/29 17:11:09 mrg Exp $
 .\"
 .\" Copyright (c) 1997 Matthew R. Green
@@ -29,7 +29,7 @@
 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 .\" SUCH DAMAGE.
 .\"
-.Dd $Mdocdate: December 13 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt SWAPCTL 2
 .Os
 .Sh NAME
@@ -175,9 +175,10 @@ A component of the path prefix is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
 .Dv NAME_MAX
-characters, or an entire path name exceeded
+characters, or an entire pathname (including the terminating NUL)
+exceeded
 .Dv PATH_MAX
-characters.
+bytes.
 .It Bq Er ENOENT
 The named device does not exist.
 For the
index 8b5d60e..21c182b 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: symlink.2,v 1.18 2014/12/10 19:19:00 schwarze Exp $
+.\"    $OpenBSD: symlink.2,v 1.19 2015/01/19 15:54:12 millert Exp $
 .\"    $NetBSD: symlink.2,v 1.7 1995/02/27 12:38:34 cgd Exp $
 .\"
 .\" Copyright (c) 1983, 1991, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)symlink.2  8.1 (Berkeley) 6/4/93
 .\"
-.Dd $Mdocdate: December 10 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt SYMLINK 2
 .Os
 .Sh NAME
@@ -95,10 +95,11 @@ A component of the
 prefix is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The named file does not exist.
 .It Bq Er EACCES
index 11b375b..8cca00e 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: truncate.2,v 1.16 2014/12/10 19:19:00 schwarze Exp $
+.\"    $OpenBSD: truncate.2,v 1.17 2015/01/19 15:54:12 millert Exp $
 .\"    $NetBSD: truncate.2,v 1.7 1995/02/27 12:39:00 cgd Exp $
 .\"
 .\" Copyright (c) 1983, 1991, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)truncate.2 8.1 (Berkeley) 6/4/93
 .\"
-.Dd $Mdocdate: December 10 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt TRUNCATE 2
 .Os
 .Sh NAME
@@ -82,10 +82,11 @@ may return the following errors:
 A component of the path prefix is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The named file does not exist.
 .It Bq Er EACCES
index ec02a7b..5a1b712 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: unlink.2,v 1.25 2014/09/09 07:36:42 guenther Exp $
+.\"    $OpenBSD: unlink.2,v 1.26 2015/01/19 15:54:12 millert Exp $
 .\"    $NetBSD: unlink.2,v 1.7 1995/02/27 12:39:13 cgd Exp $
 .\"
 .\" Copyright (c) 1980, 1991, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)unlink.2   8.1 (Berkeley) 6/4/93
 .\"
-.Dd $Mdocdate: September 9 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt UNLINK 2
 .Os
 .Sh NAME
@@ -117,10 +117,11 @@ functions will fail if:
 A component of the path prefix is not a directory.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The named file does not exist.
 .It Bq Er EACCES
index 61ded7b..cdb7ea8 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: utimes.2,v 1.22 2014/12/10 19:19:00 schwarze Exp $
+.\"    $OpenBSD: utimes.2,v 1.23 2015/01/19 15:54:12 millert Exp $
 .\"    $NetBSD: utimes.2,v 1.9 1996/04/23 10:34:16 mycroft Exp $
 .\"
 .\" Copyright (c) 1990, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"     @(#)utimes.2   8.1 (Berkeley) 6/4/93
 .\"
-.Dd $Mdocdate: December 10 2014 $
+.Dd $Mdocdate: January 19 2015 $
 .Dt UTIMES 2
 .Os
 .Sh NAME
@@ -164,10 +164,11 @@ An I/O error occurred while reading or writing the affected inode.
 Too many symbolic links were encountered in translating the pathname.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
-.Dv {NAME_MAX}
-characters, or an entire path name exceeded
-.Dv {PATH_MAX}
-characters.
+.Dv NAME_MAX
+characters, or an entire pathname (including the terminating NUL)
+exceeded
+.Dv PATH_MAX
+bytes.
 .It Bq Er ENOENT
 The named file does not exist.
 .It Bq Er ENOTDIR