Skip to content
Snippets Groups Projects
Commit eb4761c7 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#6510

parent 196f9866
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,7 @@ OpenLDAP 2.4.22 Engineering
Added slapo-pbind
Fixed libldap GnuTLS serial length (ITS#6460)
Fixed libldap MozNSS context and PEM support (ITS#6432)
Fixed libldap referral on bind behavior(ITS#6510)
Fixed slapd acl non-entry internal searches (ITS#6481)
Fixed slapd acl attrval style initialization (ITS#6520)
Fixed slapd certificateListValidate (ITS#6466)
......
......@@ -747,8 +747,9 @@ nextresp2:
}
/* Do we need to check for referrals? */
if ( LDAP_BOOL_GET(&ld->ld_options, LDAP_BOOL_REFERRALS) ||
lr->lr_parent != NULL )
if ( tag != LDAP_RES_BIND &&
( LDAP_BOOL_GET(&ld->ld_options, LDAP_BOOL_REFERRALS) ||
lr->lr_parent != NULL ))
{
char **refs = NULL;
ber_len_t len;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment