Module Name: src
Committed By: wiz
Date: Fri Jul 8 19:26:19 UTC 2011
Modified Files:
src/lib/libc/sys: revoke.2
Log Message:
Sort error descriptions.
To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/lib/libc/sys/revoke.2
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/sys/revoke.2
diff -u src/lib/libc/sys/revoke.2:1.14 src/lib/libc/sys/revoke.2:1.15
--- src/lib/libc/sys/revoke.2:1.14 Sun Jul 3 20:36:34 2011
+++ src/lib/libc/sys/revoke.2 Fri Jul 8 19:26:19 2011
@@ -1,4 +1,4 @@
-.\" $NetBSD: revoke.2,v 1.14 2011/07/03 20:36:34 jruoho Exp $
+.\" $NetBSD: revoke.2,v 1.15 2011/07/08 19:26:19 wiz Exp $
.\"
.\" Copyright (c) 1993
.\" The Regents of the University of California. All rights reserved.
@@ -76,20 +76,20 @@
.Sh ERRORS
Access to the named file is revoked unless one of the following:
.Bl -tag -width Er
-.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.
-.It Bq Er ENOENT
-The named file or a component of the path name does not exist.
.It Bq Er EACCES
Search permission is denied for a component of the path prefix.
-.It Bq Er ELOOP
-Too many symbolic links were encountered in translating the pathname.
.It Bq Er EFAULT
.Fa path
points outside the process's allocated address space.
+.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 1024 characters.
+.It Bq Er ENOENT
+The named file or a component of the path name does not exist.
+.It Bq Er ENOTDIR
+A component of the path prefix is not a directory.
.It Bq Er EPERM
The caller is neither the owner of the file nor the super user.
.El