Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
eb4761c7
Commit
eb4761c7
authored
Apr 16, 2010
by
Quanah Gibson-Mount
Browse files
ITS#6510
parent
196f9866
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
eb4761c7
...
...
@@ -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)
...
...
libraries/libldap/result.c
View file @
eb4761c7
...
...
@@ -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
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment