diff options
Diffstat (limited to 'md5crypt.c')
-rw-r--r-- | md5crypt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/md5crypt.c b/md5crypt.c index e483ade8c..e14d53ac1 100644 --- a/md5crypt.c +++ b/md5crypt.c | |||
@@ -13,7 +13,7 @@ | |||
13 | #if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) | 13 | #if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) |
14 | #include <openssl/md5.h> | 14 | #include <openssl/md5.h> |
15 | 15 | ||
16 | RCSID("$Id: md5crypt.c,v 1.6 2003/05/18 14:46:46 djm Exp $"); | 16 | RCSID("$Id: md5crypt.c,v 1.7 2003/05/30 06:58:23 dtucker Exp $"); |
17 | 17 | ||
18 | /* 0 ... 63 => ascii - 64 */ | 18 | /* 0 ... 63 => ascii - 64 */ |
19 | static unsigned char itoa64[] = | 19 | static unsigned char itoa64[] = |
@@ -157,7 +157,7 @@ md5_crypt(const char *pw, const char *salt) | |||
157 | memset(salt_copy, 0, sizeof(salt_copy)); | 157 | memset(salt_copy, 0, sizeof(salt_copy)); |
158 | memset(&ctx, 0, sizeof(ctx)); | 158 | memset(&ctx, 0, sizeof(ctx)); |
159 | memset(&ctx1, 0, sizeof(ctx1)); | 159 | memset(&ctx1, 0, sizeof(ctx1)); |
160 | (void)to64(0, 4) | 160 | (void)to64(0, 4); |
161 | 161 | ||
162 | return (passwd); | 162 | return (passwd); |
163 | } | 163 | } |