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
88b7df65
Commit
88b7df65
authored
Dec 12, 2010
by
Quanah Gibson-Mount
Browse files
ITS
#6643
parent
652cb0c0
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
88b7df65
...
...
@@ -6,6 +6,7 @@ OpenLDAP 2.4.24 Engineering
Fixed slapd acl parsing overflow (ITS#6611)
Fixed slapd modify to return actual error (ITS#6581)
Fixed slapd-bdb entry cache delete failure (ITS#6577)
Fixed slapd-meta anon retry with failed auth method (ITS#6643)
Fixed slapd-null back-config support (ITS#6624)
Fixed slapo-pcache callback freeing (ITS#6640)
Fixed slapo-pcache to ignore undefined attrs (ITS#6600)
...
...
servers/slapd/back-meta/search.c
View file @
88b7df65
...
...
@@ -191,8 +191,13 @@ meta_search_dobind_init(
(
mt
->
mt_idassert_flags
&
LDAP_BACK_AUTH_OVERRIDE
)
)
)
{
rc
=
meta_back_proxy_authz_cred
(
mc
,
candidate
,
op
,
rs
,
LDAP_BACK_DONTSEND
,
&
binddn
,
&
cred
,
&
method
);
if
(
rc
!=
LDAP_SUCCESS
)
{
switch
(
rc
)
{
case
LDAP_SUCCESS
:
break
;
case
LDAP_UNAVAILABLE
:
goto
down
;
default:
goto
other
;
}
/* NOTE: we copy things here, even if bind didn't succeed yet,
...
...
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