Found and fixed stupid bug in seeded hash generation.

This commit is contained in:
Kurt Zeilenga 1999-12-08 19:23:32 +00:00
parent 23b949d843
commit aeb2de33d7

View file

@ -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 ) {