ITS#10254 Fix password_scheme to return full hash specification

This commit is contained in:
Ondřej Kuzník 2025-04-15 17:44:40 +01:00 committed by Quanah Gibson-Mount
parent d0d07810eb
commit 406836540c

View file

@ -2529,7 +2529,7 @@ password_scheme( struct berval *cred, struct berval *sch )
if (rc) {
if (sch) {
sch->bv_val = cred->bv_val;
sch->bv_len = e;
sch->bv_len = e + 1;
}
return LDAP_SUCCESS;
}