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
29be94af
Commit
29be94af
authored
Nov 18, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5816
parent
cf7522bc
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
29be94af
...
...
@@ -40,6 +40,7 @@ OpenLDAP 2.4.13 Engineering
Fixed slapd-bdb/hdb indexing of entryDN (ITS#5790)
Fixed slapd-bdb/hdb lookup of entryDN with equality (ITS#5791)
Fixed slapd-ldap snprintf buffer overflow test (ITS#4467)
Fixed slapd-ldap search stop on minor failure (ITS#5816)
Fixed slapd-ldif file rename on windows (ITS#5774)
Fixed slapd-null read controls support (ITS#5757)
Fixed slapd-sql value length with right index (ITS#5779)
...
...
servers/slapd/back-ldap/search.c
View file @
29be94af
...
...
@@ -360,7 +360,12 @@ retry:
entry_clean
(
&
ent
);
}
ldap_msgfree
(
res
);
if
(
rc
!=
LDAP_SUCCESS
)
{
switch
(
rc
)
{
case
LDAP_SUCCESS
:
case
LDAP_INSUFFICIENT_ACCESS
:
break
;
default:
if
(
rc
==
LDAP_UNAVAILABLE
)
{
rc
=
rs
->
sr_err
=
LDAP_OTHER
;
}
else
{
...
...
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