- (dtucker) Add missing semicolon in md5crypt.c, patch from openssh at
roumenpetrov.info
This commit is contained in:
parent
a6a7c19dcb
commit
3cb84e5ec8
|
@ -1,3 +1,7 @@
|
|||
20030530
|
||||
- (dtucker) Add missing semicolon in md5crypt.c, patch from openssh at
|
||||
roumenpetrov.info
|
||||
|
||||
20030526
|
||||
- (djm) Avoid auth2-chall.c warning when compiling without
|
||||
PAM, BSD_AUTH and SKEY
|
||||
|
@ -1618,4 +1622,4 @@
|
|||
save auth method before monitor_reset_key_state(); bugzilla bug #284;
|
||||
ok provos@
|
||||
|
||||
$Id: ChangeLog,v 1.2752 2003/05/26 11:36:13 djm Exp $
|
||||
$Id: ChangeLog,v 1.2753 2003/05/30 06:58:22 dtucker Exp $
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue