*ssf > 1 should be *ssf > 0

This commit is contained in:
Kurt Zeilenga 2000-07-14 04:35:13 +00:00
parent a42351c40f
commit 95df143c33

View File

@ -599,7 +599,7 @@ ldap_int_sasl_bind(
(unsigned long) *ssf );
#ifdef LDAP_SASL_SECURITY_LAYER
if( ssf && *ssf > 1 ) {
if( ssf && *ssf ) {
fprintf( stderr, "SASL installing layers\n" );
ldap_pvt_sasl_install( ld->ld_sb, ctx );
}