diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-03-31 02:38:45 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-03-31 02:38:45 +0000 |
commit | bbdb69e83a24f8580ca68cd9a681c5e0c7009dc0 (patch) | |
tree | 5aaeb6c8bb19b47871db6f8644f35bc08355ab03 /lib/libc/crypt | |
parent | 1d0689029995aee7f01c991d28d541b9b956af63 (diff) |
salt is an int32_t
Diffstat (limited to 'lib/libc/crypt')
-rw-r--r-- | lib/libc/crypt/crypt.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/crypt/crypt.3 b/lib/libc/crypt/crypt.3 index 65750c94bb4..3e0e59287b3 100644 --- a/lib/libc/crypt/crypt.3 +++ b/lib/libc/crypt/crypt.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: crypt.3,v 1.5 1996/12/10 09:06:09 deraadt Exp $ +.\" $OpenBSD: crypt.3,v 1.6 1997/03/31 02:38:44 deraadt Exp $ .\" .\" FreeSec: libcrypt .\" @@ -52,7 +52,7 @@ .Ft int .Fn des_setkey "const char *key" .Ft int -.Fn des_cipher "const char *in" "char *out" "long salt" "int count" +.Fn des_cipher "const char *in" "char *out" "int32_t salt" "int count" .Sh DESCRIPTION The .Fn crypt |