summaryrefslogtreecommitdiff
path: root/src/lib/libc/crypt
diff options
context:
space:
mode:
authorcloder <>2005-02-25 03:12:44 +0000
committercloder <>2005-02-25 03:12:44 +0000
commit67e61f91527f9a7cd6b9a16b0cd90dd56607d505 (patch)
treed9de936ffc7fa9289c7b7f61b1db414900ba94fa /src/lib/libc/crypt
parent52fef3b7d084fa9e2d0ac9187917b0ede8d9d58d (diff)
downloadopenbsd-67e61f91527f9a7cd6b9a16b0cd90dd56607d505.tar.gz
openbsd-67e61f91527f9a7cd6b9a16b0cd90dd56607d505.tar.bz2
openbsd-67e61f91527f9a7cd6b9a16b0cd90dd56607d505.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 'src/lib/libc/crypt')
-rw-r--r--src/lib/libc/crypt/crypt.38
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libc/crypt/crypt.3 b/src/lib/libc/crypt/crypt.3
index 9908750f07..2bc03fdd41 100644
--- a/src/lib/libc/crypt/crypt.3
+++ b/src/lib/libc/crypt/crypt.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: crypt.3,v 1.22 2004/04/06 11:00:32 djm Exp $ 1.\" $OpenBSD: crypt.3,v 1.23 2005/02/25 03:12:43 cloder Exp $
2.\" 2.\"
3.\" FreeSec: libcrypt 3.\" FreeSec: libcrypt
4.\" 4.\"
@@ -72,7 +72,7 @@ stronger hashing algorithms.
72The first argument to 72The first argument to
73.Fn crypt 73.Fn crypt
74is a 74is a
75.Dv null Ns -terminated 75.Dv NUL Ns -terminated
76string, typically a user's typed password. 76string, typically a user's typed password.
77The second is in one of three forms: 77The second is in one of three forms:
78if it begins with an underscore 78if it begins with an underscore
@@ -198,8 +198,8 @@ The DES key is used to encrypt a 64-bit constant using
198iterations of 198iterations of
199.Tn DES . 199.Tn DES .
200The value returned is a 200The value returned is a
201.Dv null Ns -terminated 201.Dv NUL Ns -terminated
202string, 20 or 13 bytes (plus null) in length, consisting of the 202string, 20 or 13 bytes (plus NUL) in length, consisting of the
203.Ar setting 203.Ar setting
204followed by the encoded 64-bit encryption. 204followed by the encoded 64-bit encryption.
205.Pp 205.Pp