Accept X-starttls for prev commit

This commit is contained in:
Howard Chu 2008-10-07 03:13:00 +00:00
parent 809548c88b
commit c51252633b

View file

@ -370,6 +370,7 @@ find_tls_ext( LDAPURLDesc *srv )
crit = 1;
}
if ( !strcasecmp( ext, "StartTLS" ) ||
!strcasecmp( ext, "X-StartTLS" ) ||
!strcmp( ext, LDAP_EXOP_START_TLS )) {
return crit + 1;
}
@ -1083,10 +1084,10 @@ ldap_chase_v3referrals( LDAP *ld, LDAPRequest *lr, char **refs, int sref, char *
ok = 1;
#endif
if ( !ok ) {
/* we do not support any other extensions */
ld->ld_errno = LDAP_NOT_SUPPORTED;
rc = -1;
goto done;
/* we do not support any other extensions */
ld->ld_errno = LDAP_NOT_SUPPORTED;
rc = -1;
goto done;
}
}