From aeb2de33d7769d83297255941afcd6c655e28af7 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Wed, 8 Dec 1999 19:23:32 +0000 Subject: [PATCH] Found and fixed stupid bug in seeded hash generation. --- libraries/liblutil/passwd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) { -- 2.39.5