summaryrefslogtreecommitdiff
path: root/lib/libc/sys/chroot.2
diff options
context:
space:
mode:
authorlukem <lukem@NetBSD.org>1998-08-29 08:32:32 +0000
committerlukem <lukem@NetBSD.org>1998-08-29 08:32:32 +0000
commitce83c69e00a77ed28196913aa6cd4d90b18a5a40 (patch)
tree450c82d7051427c4a5591ae055ee20a914f89ff7 /lib/libc/sys/chroot.2
parented88a6f1032cd4c9cfba1c0bd934bbe6bff8fc05 (diff)
first pass at fixing up capitalization of function names and
arguments; ensure that each is correct with respect to the implementation, rather than being correct as per english.
Diffstat (limited to 'lib/libc/sys/chroot.2')
-rw-r--r--lib/libc/sys/chroot.210
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/sys/chroot.2 b/lib/libc/sys/chroot.2
index 87b8028b6a4..523165439ff 100644
--- a/lib/libc/sys/chroot.2
+++ b/lib/libc/sys/chroot.2
@@ -1,4 +1,4 @@
-.\" $NetBSD: chroot.2,v 1.8 1997/09/27 19:33:20 hubertf Exp $
+.\" $NetBSD: chroot.2,v 1.9 1998/08/29 08:32:36 lukem Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -44,9 +44,9 @@
.Ft int
.Fn chroot "const char *dirname"
.Sh DESCRIPTION
-.Fa Dirname
+.Fa dirname
is the address of the pathname of a directory, terminated by an ASCII NUL.
-.Fn Chroot
+.Fn chroot
causes
.Fa dirname
to become the root directory,
@@ -68,7 +68,7 @@ a value of -1 is returned and
.Va errno
is set to indicate an error.
.Sh ERRORS
-.Fn Chroot
+.Fn chroot
will fail and the root directory will be unchanged if:
.Bl -tag -width Er
.It Bq Er ENOTDIR
@@ -86,7 +86,7 @@ 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
+.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.