diff options
author | truckman <truckman@FreeBSD.org> | 2002-09-18 09:34:01 +0000 |
---|---|---|
committer | truckman <truckman@FreeBSD.org> | 2002-09-18 09:34:01 +0000 |
commit | 9746ec766a71ee0841e67fe78bab69c74710adc4 (patch) | |
tree | 064d3abd19684303b4c1bfc115c2665ff517cebf /share | |
parent | 196b315ed80d68650ae09897e65629420c5018a2 (diff) | |
download | FreeBSD-src-9746ec766a71ee0841e67fe78bab69c74710adc4.zip FreeBSD-src-9746ec766a71ee0841e67fe78bab69c74710adc4.tar.gz |
Style and markup changes only.
Capitalize the first letter of the descriptions for the entries in the ERRORS
section if they are complete sentences and end the sentences with periods.
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/VOP_ACCESS.9 | 2 | ||||
-rw-r--r-- | share/man/man9/VOP_ACLCHECK.9 | 5 | ||||
-rw-r--r-- | share/man/man9/VOP_ATTRIB.9 | 4 | ||||
-rw-r--r-- | share/man/man9/VOP_GETACL.9 | 4 | ||||
-rw-r--r-- | share/man/man9/VOP_GETEXTATTR.9 | 4 | ||||
-rw-r--r-- | share/man/man9/VOP_LINK.9 | 6 | ||||
-rw-r--r-- | share/man/man9/VOP_LOOKUP.9 | 6 | ||||
-rw-r--r-- | share/man/man9/VOP_READDIR.9 | 2 | ||||
-rw-r--r-- | share/man/man9/VOP_READLINK.9 | 2 | ||||
-rw-r--r-- | share/man/man9/VOP_REMOVE.9 | 2 | ||||
-rw-r--r-- | share/man/man9/VOP_RENAME.9 | 2 | ||||
-rw-r--r-- | share/man/man9/VOP_SETACL.9 | 8 | ||||
-rw-r--r-- | share/man/man9/VOP_SETEXTATTR.9 | 10 |
13 files changed, 29 insertions, 28 deletions
diff --git a/share/man/man9/VOP_ACCESS.9 b/share/man/man9/VOP_ACCESS.9 index 0b7ee02..090b51a 100644 --- a/share/man/man9/VOP_ACCESS.9 +++ b/share/man/man9/VOP_ACCESS.9 @@ -138,7 +138,7 @@ vop_access(struct vnode *vp, int mode, struct ucred *cred, struct thread *td) .Sh ERRORS .Bl -tag -width Er .It Bq Er EPERM -An attempt was made to change an immutable file +An attempt was made to change an immutable file. .It Bq Er EACCES Permission denied .El diff --git a/share/man/man9/VOP_ACLCHECK.9 b/share/man/man9/VOP_ACLCHECK.9 index be55b5d..ff9de9e 100644 --- a/share/man/man9/VOP_ACLCHECK.9 +++ b/share/man/man9/VOP_ACLCHECK.9 @@ -80,13 +80,14 @@ then zero is returned. Otherwise, an appropriate error code is returned. .Sh ERRORS .Bl -tag -width Er .It Bq Er EINVAL -The ACL type passed is invalid for this vnode, or the ACL data is invalid +The ACL type passed is invalid for this vnode, or the ACL data is invalid. .It Bq Er EACCES Permission denied .It Bq Er ENOMEM Insufficient memory available to fulfill request .It Bq Er EOPNOTSUPP -The filesystem does not support VOP_ACLCHECK +The filesystem does not support +.Fn VOP_ACLCHECK . .El .Sh SEE ALSO .Xr acl 9 , diff --git a/share/man/man9/VOP_ATTRIB.9 b/share/man/man9/VOP_ATTRIB.9 index bebc3bf..7742947 100644 --- a/share/man/man9/VOP_ATTRIB.9 +++ b/share/man/man9/VOP_ATTRIB.9 @@ -151,11 +151,11 @@ vop_setattr(struct vnode *vp, struct vattr *vap, .Sh ERRORS .Bl -tag -width Er .It Bq Er EPERM -The file is immutable +The file is immutable. .It Bq Er EACCES Permission denied .It Bq Er EROFS -The filesystem is read-only +The filesystem is read-only. .El .Sh SEE ALSO .Xr VFS 9 , diff --git a/share/man/man9/VOP_GETACL.9 b/share/man/man9/VOP_GETACL.9 index 1404b40..282c2f2 100644 --- a/share/man/man9/VOP_GETACL.9 +++ b/share/man/man9/VOP_GETACL.9 @@ -77,14 +77,14 @@ an appropriate error code is returned. .Sh ERRORS .Bl -tag -width Er .It Bq Er EINVAL -The ACL type passed is invalid for this vnode +The ACL type passed is invalid for this vnode. .It Bq Er EACCES Permission denied .It Bq Er ENOMEM Insufficient memory available to fulfill request .It Bq Er EOPNOTSUPP The filesystem does not support -.Fn VOP_GETACL +.Fn VOP_GETACL . .El .Sh SEE ALSO .Xr acl 9 , diff --git a/share/man/man9/VOP_GETEXTATTR.9 b/share/man/man9/VOP_GETEXTATTR.9 index 5a54c46..bb7c423 100644 --- a/share/man/man9/VOP_GETEXTATTR.9 +++ b/share/man/man9/VOP_GETEXTATTR.9 @@ -99,7 +99,7 @@ reflect data read. Otherwise, an appropriate error code is returned. .Sh ERRORS .Bl -tag -width Er .It Bq Er ENOENT -The attribute name is not defined for this vnode +The attribute name is not defined for this vnode. .It Bq Er EACCES Permission denied .It Bq Er ENXIO @@ -117,7 +117,7 @@ or argument is invalid. .It Bq Er EOPNOTSUPP The filesystem does not support -.Fn VOP_GETEXTATTR +.Fn VOP_GETEXTATTR . .El .Sh SEE ALSO .Xr extattr 9 , diff --git a/share/man/man9/VOP_LINK.9 b/share/man/man9/VOP_LINK.9 index 9660f18..e87ee53 100644 --- a/share/man/man9/VOP_LINK.9 +++ b/share/man/man9/VOP_LINK.9 @@ -118,15 +118,15 @@ out2: .Sh ERRORS .Bl -tag -width Er .It Bq Er EMLINK -the file has too many links +The file has too many links. .El .Bl -tag -width Er .It Bq Er EPERM -the file is immutable +The file is immutable. .El .Bl -tag -width Er .It Bq Er EXDEV -a hard link is not possible between different file systems +A hard link is not possible between different file systems. .El .Sh SEE ALSO .Xr vnode 9 , diff --git a/share/man/man9/VOP_LOOKUP.9 b/share/man/man9/VOP_LOOKUP.9 index ad9ca0e..e44f1f2 100644 --- a/share/man/man9/VOP_LOOKUP.9 +++ b/share/man/man9/VOP_LOOKUP.9 @@ -421,13 +421,13 @@ The component .Fa dvp was not found in this directory. .It Bq Er EACCES -access for the specified operation is denied. +Access for the specified operation is denied. .It Bq Er EJUSTRETURN -a +A .Dv CREATE or .Dv RENAME -operation would be successful +operation would be successful. .El .Sh SEE ALSO .Xr VOP_ACCESS 9 , diff --git a/share/man/man9/VOP_READDIR.9 b/share/man/man9/VOP_READDIR.9 index dcbf18c..2647dee 100644 --- a/share/man/man9/VOP_READDIR.9 +++ b/share/man/man9/VOP_READDIR.9 @@ -157,7 +157,7 @@ vop_readdir(struct vnode *vp, struct uio *uio, struct ucred *cred, .It Bq Er EINVAL attempt to read from an illegal offset in the directory .It Bq Er EIO -a read error occurred while reading the directory +A read error occurred while reading the directory. .El .Sh SEE ALSO .Xr vnode 9 diff --git a/share/man/man9/VOP_READLINK.9 b/share/man/man9/VOP_READLINK.9 index 36e0b2c..f2284db 100644 --- a/share/man/man9/VOP_READLINK.9 +++ b/share/man/man9/VOP_READLINK.9 @@ -72,7 +72,7 @@ vop_readlink(struct vnode *vp, struct uio *uio, struct ucred *cred) .Sh ERRORS .Bl -tag -width Er .It Bq Er EIO -a read error occurred while reading the contents of the symlink +A read error occurred while reading the contents of the symlink. .El .Sh SEE ALSO .Xr uiomove 9 , diff --git a/share/man/man9/VOP_REMOVE.9 b/share/man/man9/VOP_REMOVE.9 index 483ad69..e03899a 100644 --- a/share/man/man9/VOP_REMOVE.9 +++ b/share/man/man9/VOP_REMOVE.9 @@ -96,7 +96,7 @@ vop_remove(struct vnode *dvp, struct vnode *vp, struct componentname *cnp) .Sh ERRORS .Bl -tag -width Er .It Bq Er EPERM -the file is immutable +The file is immutable. .It Bq Er ENOTEMPTY attempt to remove a directory which is not empty .El diff --git a/share/man/man9/VOP_RENAME.9 b/share/man/man9/VOP_RENAME.9 index 5fca655..6a5c9ba 100644 --- a/share/man/man9/VOP_RENAME.9 +++ b/share/man/man9/VOP_RENAME.9 @@ -293,7 +293,7 @@ out: .Sh ERRORS .Bl -tag -width Er .It Bq Er EPERM -the file is immutable +The file is immutable. .It Bq Er EXDEV cross device move .It Bq Er EINVAL diff --git a/share/man/man9/VOP_SETACL.9 b/share/man/man9/VOP_SETACL.9 index bb2949f..b7591f2 100644 --- a/share/man/man9/VOP_SETACL.9 +++ b/share/man/man9/VOP_SETACL.9 @@ -81,18 +81,18 @@ appropriate error code is returned. .Sh ERRORS .Bl -tag -width Er .It Bq Er EINVAL -The ACL type passed is invalid for this vnode, or the ACL data is invalid +The ACL type passed is invalid for this vnode, or the ACL data is invalid. .It Bq Er EACCES Permission denied .It Bq Er ENOMEM Insufficient memory available to fulfill request .It Bq Er EOPNOTSUPP The filesystem does not support -.Fn VOP_SETACL +.Fn VOP_SETACL . .It Bq Er ENOSPC -The filesystem is out of space +The filesystem is out of space. .It Bq Er EROFS -The filesystem is read-only +The filesystem is read-only. .El .Sh SEE ALSO .Xr acl 9 , diff --git a/share/man/man9/VOP_SETEXTATTR.9 b/share/man/man9/VOP_SETEXTATTR.9 index 5047553..2ff01c4 100644 --- a/share/man/man9/VOP_SETEXTATTR.9 +++ b/share/man/man9/VOP_SETEXTATTR.9 @@ -98,16 +98,16 @@ attribute name. .It Bq Er ENOMEM Insufficient memory available to fulfill request .It Bq Er EFAULT -The uio structure refers to an invalid userspace address +The uio structure refers to an invalid userspace address. .It Bq Er EINVAL -The name or uio argument is invalid +The name or uio argument is invalid. .It Bq Er EOPNOTSUPP The filesystem does not support -.Fn VOP_SETEXTATTR +.Fn VOP_SETEXTATTR . .It Bq Er ENOSPC -The filesystem is out of space +The filesystem is out of space. .It Bq Er EROFS -The filesystem is read-only +The filesystem is read-only. .El .Sh SEE ALSO .Xr extattr 9 , |