summaryrefslogtreecommitdiffstats
path: root/md5crypt.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2003-05-30 16:58:22 +1000
committerDarren Tucker <dtucker@zip.com.au>2003-05-30 16:58:22 +1000
commit3cb84e5ec8a8d4297981aca60ac4fced346eea41 (patch)
tree4e20be989085f771924a18a09cc73818beabe988 /md5crypt.c
parenta6a7c19dcbd96553b63b7524490e3528bd726ed8 (diff)
- (dtucker) Add missing semicolon in md5crypt.c, patch from openssh at
roumenpetrov.info
Diffstat (limited to 'md5crypt.c')
-rw-r--r--md5crypt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/md5crypt.c b/md5crypt.c
index e483ade8..e14d53ac 100644
--- a/md5crypt.c
+++ b/md5crypt.c
@@ -13,7 +13,7 @@
#if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
#include <openssl/md5.h>
-RCSID("$Id: md5crypt.c,v 1.6 2003/05/18 14:46:46 djm Exp $");
+RCSID("$Id: md5crypt.c,v 1.7 2003/05/30 06:58:23 dtucker Exp $");
/* 0 ... 63 => ascii - 64 */
static unsigned char itoa64[] =
@@ -157,7 +157,7 @@ md5_crypt(const char *pw, const char *salt)
memset(salt_copy, 0, sizeof(salt_copy));
memset(&ctx, 0, sizeof(ctx));
memset(&ctx1, 0, sizeof(ctx1));
- (void)to64(0, 4)
+ (void)to64(0, 4);
return (passwd);
}