Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
4793af4a
Commit
4793af4a
authored
Jan 26, 2009
by
Quanah Gibson-Mount
Browse files
ITS#5896
parent
9defbabe
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
4793af4a
...
...
@@ -4,6 +4,7 @@ OpenLDAP 2.4.14 Engineering
Added libldap option to disable SASL host canonicalization (ITS#5812)
Fixed libldap deref handling (ITS#5768)
Fixed libldap peer cert memory leak (ITS#5849)
Fixed libldap intermediate response behavior (ITS#5896)
Fixed libldap_r deref building (ITS#5768)
Fixed libldap_r slapd lockup when paused during shutdown (ITS#5841)
Added slapd syncrepl default retry setting (ITS#5825)
...
...
libraries/libldap/result.c
View file @
4793af4a
...
...
@@ -1127,7 +1127,8 @@ nextresp2:
if
(
msgid
==
LDAP_RES_ANY
||
id
==
msgid
)
{
if
(
all
==
LDAP_MSG_ONE
||
(
newmsg
->
lm_msgtype
!=
LDAP_RES_SEARCH_RESULT
&&
newmsg
->
lm_msgtype
!=
LDAP_RES_SEARCH_ENTRY
&&
newmsg
->
lm_msgtype
!=
LDAP_RES_SEARCH_ENTRY
&&
newmsg
->
lm_msgtype
!=
LDAP_RES_INTERMEDIATE
&&
newmsg
->
lm_msgtype
!=
LDAP_RES_SEARCH_REFERENCE
)
)
{
*
result
=
newmsg
;
...
...
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