diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/crypt/crypt.3 | 4 | ||||
-rw-r--r-- | lib/libc/stdlib/calloc.3 | 4 | ||||
-rw-r--r-- | lib/libc/string/memcmp.3 | 4 | ||||
-rw-r--r-- | lib/libc/sys/mkdir.2 | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/lib/libc/crypt/crypt.3 b/lib/libc/crypt/crypt.3 index f58c09963a4..65750c94bb4 100644 --- a/lib/libc/crypt/crypt.3 +++ b/lib/libc/crypt/crypt.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: crypt.3,v 1.4 1996/11/01 03:45:28 deraadt Exp $ +.\" $OpenBSD: crypt.3,v 1.5 1996/12/10 09:06:09 deraadt Exp $ .\" .\" FreeSec: libcrypt .\" @@ -67,7 +67,7 @@ is a string, typically a user's typed password. The second is in one of two forms: if it begins with an underscore (``_'') then an extended format is used -in interpreting both the the key and the setting, as outlined below. +in interpreting both the key and the setting, as outlined below. .Ss Extended crypt: .Pp The diff --git a/lib/libc/stdlib/calloc.3 b/lib/libc/stdlib/calloc.3 index 4b32c2e9dcf..13a912169c6 100644 --- a/lib/libc/stdlib/calloc.3 +++ b/lib/libc/stdlib/calloc.3 @@ -33,7 +33,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $OpenBSD: calloc.3,v 1.2 1996/08/19 08:33:26 tholo Exp $ +.\" $OpenBSD: calloc.3,v 1.3 1996/12/10 09:06:10 deraadt Exp $ .\" .Dd June 29, 1991 .Dt CALLOC 3 @@ -57,7 +57,7 @@ The space is initialized to all bits zero. The .Fn calloc function returns -a pointer to the +a pointer to the allocated space if successful; otherwise a null pointer is returned. .Sh SEE ALSO .Xr malloc 3 , diff --git a/lib/libc/string/memcmp.3 b/lib/libc/string/memcmp.3 index dfc63877b7d..34c5f608611 100644 --- a/lib/libc/string/memcmp.3 +++ b/lib/libc/string/memcmp.3 @@ -33,7 +33,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $OpenBSD: memcmp.3,v 1.2 1996/08/19 08:34:05 tholo Exp $ +.\" $OpenBSD: memcmp.3,v 1.3 1996/12/10 09:06:11 deraadt Exp $ .\" .Dd June 29, 1991 .Dt MEMCMP 3 @@ -60,7 +60,7 @@ bytes long. The .Fn memcmp function -returns zero if the the two strings are identical, +returns zero if the two strings are identical, otherwise returns the difference between the first two differing bytes (treated as unsigned char values, so that .Sq Li \e200 diff --git a/lib/libc/sys/mkdir.2 b/lib/libc/sys/mkdir.2 index 8f50d6e955e..dd305fb0d14 100644 --- a/lib/libc/sys/mkdir.2 +++ b/lib/libc/sys/mkdir.2 @@ -49,7 +49,7 @@ The directory .Fa path is created with the access permissions specified by .Fa mode -and restricted by the the +and restricted by the .Xr umask 2 of the calling process. .Pp |