Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libc/sys Sort errors.



details:   https://anonhg.NetBSD.org/src/rev/06a279bb182a
branches:  trunk
changeset: 827489:06a279bb182a
user:      wiz <wiz%NetBSD.org@localhost>
date:      Mon Oct 30 15:48:38 2017 +0000

description:
Sort errors.

diffstat:

 lib/libc/sys/chroot.2 |  24 ++++++++++++------------
 1 files changed, 12 insertions(+), 12 deletions(-)

diffs (45 lines):

diff -r be65b951a178 -r 06a279bb182a lib/libc/sys/chroot.2
--- a/lib/libc/sys/chroot.2     Mon Oct 30 15:46:38 2017 +0000
+++ b/lib/libc/sys/chroot.2     Mon Oct 30 15:48:38 2017 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: chroot.2,v 1.24 2017/10/25 17:20:52 abhinav Exp $
+.\"    $NetBSD: chroot.2,v 1.25 2017/10/30 15:48:38 wiz Exp $
 .\"
 .\" Copyright (c) 1983, 1991, 1993
 .\"    The Regents of the University of California.  All rights reserved.
@@ -80,8 +80,15 @@
 .Fn chroot
 will fail and the root directory will be unchanged if:
 .Bl -tag -width Er
-.It Bq Er ENOTDIR
-A component of the path name is not a directory.
+.It Bq Er EACCES
+Search permission is denied for any component of the path name.
+.It Bq Er EFAULT
+.Fa dirname
+points outside the process's allocated address space.
+.It Bq Er EIO
+An I/O error occurred while reading from or writing to the file system.
+.It Bq Er ELOOP
+Too many symbolic links were encountered in translating the pathname.
 .It Bq Er ENAMETOOLONG
 A component of a pathname exceeded
 .Brq Dv NAME_MAX
@@ -90,15 +97,8 @@
 characters.
 .It Bq Er ENOENT
 The named directory does not exist.
-.It Bq Er EACCES
-Search permission is denied for any component of the path name.
-.It Bq Er ELOOP
-Too many symbolic links were encountered in translating the pathname.
-.It Bq Er EFAULT
-.Fa dirname
-points outside the process's allocated address space.
-.It Bq Er EIO
-An I/O error occurred while reading from or writing to the file system.
+.It Bq Er ENOTDIR
+A component of the path name is not a directory.
 .It Bq Er EPERM
 The effective user ID of the calling process is not the super-user.
 .El



Home | Main Index | Thread Index | Old Index