From: Kurt Zeilenga Date: Fri, 14 Jul 2000 04:35:13 +0000 (+0000) Subject: *ssf > 1 should be *ssf > 0 X-Git-Tag: LDBM_PRE_GIANT_RWLOCK~2449 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=95df143c336a617cf17e15a2a48cfbec1c10143e;p=openldap *ssf > 1 should be *ssf > 0 --- diff --git a/libraries/libldap/cyrus.c b/libraries/libldap/cyrus.c index fb2c790b0d..efb51720a4 100644 --- a/libraries/libldap/cyrus.c +++ b/libraries/libldap/cyrus.c @@ -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 ); }