diff options
author | 2005-02-25 03:12:43 +0000 | |
---|---|---|
committer | 2005-02-25 03:12:43 +0000 | |
commit | 1e5ede29f718fe4f17c128f8fde29ac3824349f1 (patch) | |
tree | fd6e65cd34239687cd19bb98f99ffdf5a9155023 /lib/libc/sys/execve.2 | |
parent | Fix an obviously incorrect call to memset. '0' and 0 are not the same (diff) | |
download | wireguard-openbsd-1e5ede29f718fe4f17c128f8fde29ac3824349f1.tar.xz wireguard-openbsd-1e5ede29f718fe4f17c128f8fde29ac3824349f1.zip |
Be correct in our man pages when talking about NUL termination (that is,
termination with '\0') vs. null termination.
Input from krw@, jaredy@, jmc@. OK deraadt@
Diffstat (limited to 'lib/libc/sys/execve.2')
-rw-r--r-- | lib/libc/sys/execve.2 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/sys/execve.2 b/lib/libc/sys/execve.2 index 4fc2e838b21..6d020de9526 100644 --- a/lib/libc/sys/execve.2 +++ b/lib/libc/sys/execve.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: execve.2,v 1.29 2004/07/05 23:04:43 jmc Exp $ +.\" $OpenBSD: execve.2,v 1.30 2005/02/25 03:12:44 cloder Exp $ .\" $NetBSD: execve.2,v 1.9 1995/02/27 12:32:25 cgd Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 @@ -93,7 +93,7 @@ file, is left unchanged. The argument .Fa argv is a pointer to a null-terminated array of -character pointers to nul-terminated character strings. +character pointers to NUL-terminated character strings. These strings construct the argument list to be made available to the new process. At least one argument must be present in the array; @@ -104,7 +104,7 @@ the name of the executed program (for example, the last component of The argument .Fa envp is also a pointer to a null-terminated array of -character pointers to nul-terminated strings. +character pointers to NUL-terminated strings. A pointer to this array is normally stored in the global variable .Va environ . These strings pass information to the |