Remove the EINVAL error from the ERRORS sections that

say is means that a pathname had the high-order bit
set, since this is no longer an error.
This commit is contained in:
Mike Pritchard 1997-01-11 23:56:32 +00:00
parent d5dd59058d
commit 8b3cccfc04
27 changed files with 10 additions and 70 deletions

View file

@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)access.2 8.2 (Berkeley) 4/1/94
.\" $Id: access.2,v 1.2 1996/08/29 21:23:53 wosch Exp $
.\" $Id: access.2,v 1.3 1996/12/02 20:03:21 wosch Exp $
.\"
.Dd April 1, 1994
.Dt ACCESS 2
@ -89,8 +89,6 @@ Access to the file is denied if:
.Bl -tag -width Er
.It Bq Er ENOTDIR
A component of the path prefix is not a directory.
.It Bq Er EINVAL
The pathname contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of a pathname exceeded 255 characters,
or an entire path name exceeded 1023 characters.

View file

@ -86,8 +86,6 @@ will fail if one of the following is true:
The caller is not the super-user.
.It Bq Er ENOTDIR
A component of the path prefix is not a directory.
.It Bq Er EINVAL
The pathname contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of a pathname exceeded 255 characters,
or an entire path name exceeded 1023 characters.

View file

@ -104,8 +104,6 @@ is not a socket.
The specified address is not available from the local machine.
.It Bq Er EADDRINUSE
The specified address is already in use.
.It Bq Er EINVAL
The socket is already bound to an address.
.It Bq Er EACCES
The requested address is protected, and the current user
has inadequate permission to access it.

View file

@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)chdir.2 8.2 (Berkeley) 12/11/93
.\" $Id: chdir.2,v 1.2 1996/08/29 21:23:54 wosch Exp $
.\" $Id: chdir.2,v 1.3 1996/12/02 20:03:22 wosch Exp $
.\"
.Dd December 11, 1993
.Dt CHDIR 2
@ -83,8 +83,6 @@ one or more of the following are true:
.Bl -tag -width Er
.It Bq Er ENOTDIR
A component of the path prefix is not a directory.
.It Bq Er EINVAL
The pathname contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of a pathname exceeded 255 characters,
or an entire path name exceeded 1023 characters.

View file

@ -100,8 +100,6 @@ will fail it:
.Bl -tag -width Er
.It Bq Er ENOTDIR
A component of the path prefix is not a directory.
.It Bq Er EINVAL
The pathname contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of a pathname exceeded 255 characters,
or an entire path name exceeded 1023 characters.

View file

@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)chmod.2 8.1 (Berkeley) 6/4/93
.\" $Id: chmod.2,v 1.3 1996/08/29 21:23:56 wosch Exp $
.\" $Id: chmod.2,v 1.4 1996/12/02 20:03:23 wosch Exp $
.\"
.Dd June 4, 1993
.Dt CHMOD 2
@ -124,8 +124,6 @@ will fail and the file mode will be unchanged if:
.Bl -tag -width Er
.It Bq Er ENOTDIR
A component of the path prefix is not a directory.
.It Bq Er EINVAL
The pathname contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of a pathname exceeded 255 characters,
or an entire path name exceeded 1023 characters.

View file

@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)chown.2 8.4 (Berkeley) 4/19/94
.\" $Id: chown.2,v 1.4 1996/08/29 21:23:59 wosch Exp $
.\" $Id: chown.2,v 1.5 1996/12/02 20:03:24 wosch Exp $
.\"
.Dd April 19, 1994
.Dt CHOWN 2
@ -88,8 +88,6 @@ will fail and the file will be unchanged if:
.Bl -tag -width Er
.It Bq Er ENOTDIR
A component of the path prefix is not a directory.
.It Bq Er EINVAL
The pathname contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of a pathname exceeded 255 characters,
or an entire path name exceeded 1023 characters.

View file

@ -73,8 +73,6 @@ will fail and the root directory will be unchanged if:
A component of the path name is not a directory.
.It Bq Er EPERM
The effective user ID is not the super-user.
.It Bq Er EINVAL
The pathname contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of a pathname exceeded 255 characters,
or an entire path name exceeded 1023 characters.

View file

@ -145,8 +145,6 @@ These errors may not apply in future versions of the UNIX IPC domain.
.Bl -tag -width EADDRNOTAVAILABB
.It Bq Er ENOTDIR
A component of the path prefix is not a directory.
.It Bq Er EINVAL
The pathname contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of a pathname exceeded 255 characters,
or an entire path name exceeded 1023 characters.

View file

@ -213,8 +213,6 @@ will fail and return to the calling process if:
.Bl -tag -width [ENAMETOOLONG]
.It Bq Er ENOTDIR
A component of the path prefix is not a directory.
.It Bq Er EINVAL
The pathname contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of a pathname exceeded 255 characters,
or an entire path name exceeded 1023 characters.

View file

@ -61,9 +61,6 @@ fails if one or more of the following are true:
A component of the path prefix of
.Fa path
is not a directory.
.It Bq EINVAL
.Fa path
contains a character with the high-order bit set.
.It Bq ENAMETOOLONG
The length of a component of
.Fa path

View file

@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)link.2 8.3 (Berkeley) 1/12/94
.\" $Id: link.2,v 1.4 1996/08/29 21:24:11 wosch Exp $
.\" $Id: link.2,v 1.5 1996/12/02 20:03:37 wosch Exp $
.\"
.Dd January 12, 1994
.Dt LINK 2
@ -88,8 +88,6 @@ will fail and no link will be created if:
.Bl -tag -width Ar
.It Bq Er ENOTDIR
A component of either path prefix is not a directory.
.It Bq Er EINVAL
Either pathname contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of either pathname exceeded 255 characters,
or entire length of either path name exceeded 1023 characters.

View file

@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)mkdir.2 8.2 (Berkeley) 12/11/93
.\" $Id: mkdir.2,v 1.2 1996/10/05 22:26:41 wosch Exp $
.\" $Id: mkdir.2,v 1.3 1996/12/02 20:03:40 wosch Exp $
.\"
.Dd December 11, 1993
.Dt MKDIR 2
@ -64,8 +64,6 @@ will fail and no directory will be created if:
.Bl -tag -width ENAMETOOLO
.It Bq Er ENOTDIR
A component of the path prefix is not a directory.
.It Bq Er EINVAL
The pathname contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of a pathname exceeded 255 characters,
or an entire path name exceeded 1023 characters.

View file

@ -67,8 +67,6 @@ will fail and no fifo will be created if:
The kernel has not been configured to support fifo's.
.It Bq Er ENOTDIR
A component of the path prefix is not a directory.
.It Bq Er EINVAL
The pathname contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of a pathname exceeded 255 characters,
or an entire path name exceeded 1023 characters.

View file

@ -77,8 +77,6 @@ will fail and the file will be not created if:
.Bl -tag -width Er
.It Bq Er ENOTDIR
A component of the path prefix is not a directory.
.It Bq Er EINVAL
The pathname contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of a pathname exceeded 255 characters,
or an entire path name exceeded 1023 characters.

View file

@ -218,8 +218,6 @@ is not a directory,
or a path prefix of
.Ar special
is not a directory.
.It Bq Er EINVAL
A pathname contains a character with the high-order bit set.
.It Bq Er EBUSY
Another process currently holds a reference to
.Fa dir .

View file

@ -156,8 +156,6 @@ The quota table cannot be expanded.
.It Bq Er EINVAL
.Fa Cmd
or the command type is invalid.
.It Bq Er EINVAL
A pathname contains a character with the high-order bit set.
.It Bq Er EACCES
In
.Dv Q_QUOTAON ,

View file

@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)readlink.2 8.1 (Berkeley) 6/4/93
.\" $Id$
.\" $Id: readlink.2,v 1.3 1996/12/23 23:09:40 wosch Exp $
.\"
.Dd June 4, 1993
.Dt READLINK 2
@ -67,8 +67,6 @@ will fail if:
.Bl -tag -width ENAMETOOLONG
.It Bq Er ENOTDIR
A component of the path prefix is not a directory.
.It Bq Er EINVAL
The pathname contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of a pathname exceeded 255 characters,
or an entire path name exceeded 1023 characters.

View file

@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)rename.2 8.1 (Berkeley) 6/4/93
.\" $Id: rename.2,v 1.2 1996/09/23 22:22:43 wosch Exp $
.\" $Id: rename.2,v 1.3 1996/12/02 20:03:43 wosch Exp $
.\"
.Dd June 4, 1993
.Dt RENAME 2
@ -106,8 +106,6 @@ indicates the reason for the failure.
will fail and neither of the argument files will be
affected if:
.Bl -tag -width ENAMETOOLONG
.It Bq Er EINVAL
Either pathname contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of either pathname exceeded 255 characters,
or the entire length of either path name exceeded 1023 characters.

View file

@ -60,8 +60,6 @@ The named file is removed unless:
.Bl -tag -width [ENAMETOOLONG]
.It Bq Er ENOTDIR
A component of the path is not a directory.
.It Bq Er EINVAL
The pathname contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of a pathname exceeded 255 characters,
or an entire path name exceeded 1023 characters.

View file

@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)stat.2 8.3 (Berkeley) 4/19/94
.\" $Id: stat.2,v 1.7 1996/12/02 20:03:55 wosch Exp $
.\" $Id: stat.2,v 1.8 1997/01/11 21:45:57 mpp Exp $
.\"
.Dd April 19, 1994
.Dt STAT 2
@ -229,8 +229,6 @@ will fail if:
.Bl -tag -width ENAMETOOLONGAA
.It Bq Er ENOTDIR
A component of the path prefix is not a directory.
.It Bq Er EINVAL
The pathname contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of a pathname exceeded 255 characters,
or an entire path name exceeded 1023 characters.

View file

@ -114,9 +114,6 @@ fails if one or more of the following are true:
A component of the path prefix of
.Fa Path
is not a directory.
.It Bq Er EINVAL
.Fa path
contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
The length of a component of
.Fa path

View file

@ -62,8 +62,6 @@ succeeds unless:
.Bl -tag -width ENAMETOOLONG
.It Bq Er ENOTDIR
A component of the path prefix is not a directory.
.It Bq Er EINVAL
The pathname contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of a pathname exceeded 255 characters,
or an entire path name exceeded 1023 characters.

View file

@ -66,12 +66,6 @@ The symbolic link succeeds unless:
A component of the
.Fa name2
prefix is not a directory.
.It Bq Er EINVAL
Either
.Fa name1
or
.Fa name2
contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of either pathname exceeded 255 characters,
or the entire length of either path name exceeded 1023 characters.

View file

@ -72,8 +72,6 @@ succeeds unless:
.Bl -tag -width [ENOTDIR]
.It Bq Er ENOTDIR
A component of the path prefix is not a directory.
.It Bq Er EINVAL
The pathname contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of a pathname exceeded 255 characters,
or an entire path name exceeded 1023 characters.

View file

@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)unlink.2 8.1 (Berkeley) 6/4/93
.\" $Id$
.\" $Id: unlink.2,v 1.4 1996/09/23 22:22:48 wosch Exp $
.\"
.Dd June 4, 1993
.Dt UNLINK 2
@ -71,8 +71,6 @@ succeeds unless:
.Bl -tag -width ENAMETOOLONGAA
.It Bq Er ENOTDIR
A component of the path prefix is not a directory.
.It Bq Er EINVAL
The pathname contains a character with the high-order bit set.
.It Bq Er ENAMETOOLONG
A component of a pathname exceeded 255 characters,
or an entire path name exceeded 1023 characters.

View file

@ -86,8 +86,6 @@ access is denied.
or
.Fa times
points outside the process's allocated address space.
.It Bq Er EINVAL
The pathname contains a character with the high-order bit set.
.It Bq Er EIO
An I/O error occurred while reading or writing the affected inode.
.It Bq Er ELOOP