diff options
author | 1999-02-27 21:54:48 +0000 | |
---|---|---|
committer | 1999-02-27 21:54:48 +0000 | |
commit | 960f8fbd44b728dd399b6f0cecfac7f0443ae77a (patch) | |
tree | 7c7161599c52771fdf4d5c9d491663056a570428 /lib/libc/sys/chroot.2 | |
parent | do not divide by zero; helbig@Informatik.BA-Stuttgart.DE (diff) | |
download | wireguard-openbsd-960f8fbd44b728dd399b6f0cecfac7f0443ae77a.tar.xz wireguard-openbsd-960f8fbd44b728dd399b6f0cecfac7f0443ae77a.zip |
make function names the correct case
Diffstat (limited to 'lib/libc/sys/chroot.2')
-rw-r--r-- | lib/libc/sys/chroot.2 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/sys/chroot.2 b/lib/libc/sys/chroot.2 index a1cc39f0302..27cd42524f8 100644 --- a/lib/libc/sys/chroot.2 +++ b/lib/libc/sys/chroot.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: chroot.2,v 1.5 1998/07/06 18:27:11 deraadt Exp $ +.\" $OpenBSD: chroot.2,v 1.6 1999/02/27 21:56:10 deraadt Exp $ .\" $NetBSD: chroot.2,v 1.7 1995/02/27 12:32:12 cgd Exp $ .\" .\" Copyright (c) 1983, 1991, 1993 @@ -45,9 +45,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, @@ -75,7 +75,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 @@ -93,7 +93,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. |