mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
s/got_max_ssf/got_min_ssf/ thinko fix when checking for minssf. In this case, minssf was never set, and would cause maxssh to be set in error
This commit is contained in:
parent
85747c5c55
commit
07ce0a9935
1 changed files with 1 additions and 1 deletions
|
|
@ -697,7 +697,7 @@ int ldap_pvt_sasl_secprops(
|
|||
"minssf=", sizeof("minssf")) )
|
||||
{
|
||||
if( isdigit( props[i][sizeof("minssf")] ) ) {
|
||||
got_max_ssf++;
|
||||
got_min_ssf++;
|
||||
min_ssf = atoi( &props[i][sizeof("minssf")] );
|
||||
} else {
|
||||
return LDAP_NOT_SUPPORTED;
|
||||
|
|
|
|||
Loading…
Reference in a new issue