diff options
author | cloder <> | 2005-02-25 03:12:44 +0000 |
---|---|---|
committer | cloder <> | 2005-02-25 03:12:44 +0000 |
commit | 67e61f91527f9a7cd6b9a16b0cd90dd56607d505 (patch) | |
tree | d9de936ffc7fa9289c7b7f61b1db414900ba94fa /src/lib/libc/crypt | |
parent | 52fef3b7d084fa9e2d0ac9187917b0ede8d9d58d (diff) | |
download | openbsd-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.3 | 8 |
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. | |||
72 | The first argument to | 72 | The first argument to |
73 | .Fn crypt | 73 | .Fn crypt |
74 | is a | 74 | is a |
75 | .Dv null Ns -terminated | 75 | .Dv NUL Ns -terminated |
76 | string, typically a user's typed password. | 76 | string, typically a user's typed password. |
77 | The second is in one of three forms: | 77 | The second is in one of three forms: |
78 | if it begins with an underscore | 78 | if it begins with an underscore |
@@ -198,8 +198,8 @@ The DES key is used to encrypt a 64-bit constant using | |||
198 | iterations of | 198 | iterations of |
199 | .Tn DES . | 199 | .Tn DES . |
200 | The value returned is a | 200 | The value returned is a |
201 | .Dv null Ns -terminated | 201 | .Dv NUL Ns -terminated |
202 | string, 20 or 13 bytes (plus null) in length, consisting of the | 202 | string, 20 or 13 bytes (plus NUL) in length, consisting of the |
203 | .Ar setting | 203 | .Ar setting |
204 | followed by the encoded 64-bit encryption. | 204 | followed by the encoded 64-bit encryption. |
205 | .Pp | 205 | .Pp |