Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
578e9e3c
Commit
578e9e3c
authored
Nov 20, 2007
by
Quanah Gibson-Mount
Browse files
ITS
#5232
parent
3e461b8e
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
578e9e3c
...
...
@@ -9,6 +9,7 @@ OpenLDAP 2.4.7 Engineering
Fixed slapd paged results handling when using rootdn (ITS#5230)
Fixed slapd syncrepl presentlist handling (ITS#5231)
Fixed slapd core schema 'c' definition for RFC4519 (ITS#5236)
Fixed slapd-bdb to report and fail on internal errors (ITS#5232)
Fixed slapo-ppolicy single password check on modify (ITS#5146)
Fixed slapo-syncprov refresh and persist cookie sending (ITS#5210)
Fixed slapo-syncprov ignore invalid cookies (ITS#5211)
...
...
servers/slapd/back-bdb/search.c
View file @
578e9e3c
...
...
@@ -692,6 +692,10 @@ fetch_entry_retry:
||
rs
->
sr_err
==
DB_LOCK_NOTGRANTED
)
{
goto
fetch_entry_retry
;
}
else
if
(
rs
->
sr_err
==
LDAP_OTHER
)
{
rs
->
sr_text
=
"internal error"
;
send_ldap_result
(
op
,
rs
);
goto
done
;
}
if
(
ei
&&
rs
->
sr_err
==
LDAP_SUCCESS
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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