From: Kurt Zeilenga Date: Wed, 8 Dec 1999 19:23:32 +0000 (+0000) Subject: Found and fixed stupid bug in seeded hash generation. X-Git-Tag: UCDATA_2_4~124 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=aeb2de33d7769d83297255941afcd6c655e28af7;p=openldap Found and fixed stupid bug in seeded hash generation. --- diff --git a/libraries/liblutil/passwd.c b/libraries/liblutil/passwd.c index 8c53082882..642525f5b6 100644 --- a/libraries/liblutil/passwd.c +++ b/libraries/liblutil/passwd.c @@ -254,7 +254,7 @@ static char * pw_string64( int rc; char *string; size_t b64len; - size_t len = hashlen + saltlen; + size_t len = hashlen; char *b64; if( saltlen ) {