mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 01:29:59 -05:00
Found and fixed stupid bug in seeded hash generation.
This commit is contained in:
parent
23b949d843
commit
aeb2de33d7
1 changed files with 1 additions and 1 deletions
|
|
@ -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 ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue