diff options
Diffstat (limited to 'md5crypt.c')
-rw-r--r-- | md5crypt.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/md5crypt.c b/md5crypt.c index e14d53ac1..8f2523e62 100644 --- a/md5crypt.c +++ b/md5crypt.c | |||
@@ -1,9 +1,9 @@ | |||
1 | /* | 1 | /* |
2 | * ---------------------------------------------------------------------------- | 2 | * ---------------------------------------------------------------------------- |
3 | * "THE BEER-WARE LICENSE" (Revision 42): | 3 | * "THE BEER-WARE LICENSE" (Revision 42): |
4 | * <phk@login.dknet.dk> wrote this file. As long as you retain this | 4 | * <phk@login.dknet.dk> wrote this file. As long as you retain this |
5 | * notice you can do whatever you want with this stuff. If we meet some | 5 | * notice you can do whatever you want with this stuff. If we meet some |
6 | * day, and you think this stuff is worth it, you can buy me a beer in | 6 | * day, and you think this stuff is worth it, you can buy me a beer in |
7 | * return. Poul-Henning Kamp | 7 | * return. Poul-Henning Kamp |
8 | * ---------------------------------------------------------------------------- | 8 | * ---------------------------------------------------------------------------- |
9 | */ | 9 | */ |
@@ -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.7 2003/05/30 06:58:23 dtucker Exp $"); | 16 | RCSID("$Id: md5crypt.c,v 1.9 2003/11/21 12:56:47 djm Exp $"); |
17 | 17 | ||
18 | /* 0 ... 63 => ascii - 64 */ | 18 | /* 0 ... 63 => ascii - 64 */ |
19 | static unsigned char itoa64[] = | 19 | static unsigned char itoa64[] = |
@@ -35,7 +35,7 @@ to64(unsigned long v, int n) | |||
35 | *s++ = itoa64[v&0x3f]; | 35 | *s++ = itoa64[v&0x3f]; |
36 | v >>= 6; | 36 | v >>= 6; |
37 | } | 37 | } |
38 | 38 | ||
39 | return (buf); | 39 | return (buf); |
40 | } | 40 | } |
41 | 41 | ||