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:
Ben Collins 2000-09-13 21:46:11 +00:00
parent 85747c5c55
commit 07ce0a9935

View file

@ -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;