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
872ccaa2
Commit
872ccaa2
authored
Dec 12, 2010
by
Quanah Gibson-Mount
Browse files
ITS#6665
parent
6d038f7c
Changes
2
Show whitespace changes
Inline
Side-by-side
CHANGES
View file @
872ccaa2
...
...
@@ -11,6 +11,7 @@ OpenLDAP 2.4.24 Engineering
Fixed slapd-bdb entry cache delete failure (ITS#6577)
Fixed slapd-ndb to honor rootpw setting (ITS#6661)
Fixed slapd-meta anon retry with failed auth method (ITS#6643)
Fixed slapd-meta rebind proc (ITS#6665)
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 @
872ccaa2
...
...
@@ -378,6 +378,7 @@ meta_search_dobind_result(
LDAPMessage
*
res
)
{
metainfo_t
*
mi
=
(
metainfo_t
*
)
op
->
o_bd
->
be_private
;
metatarget_t
*
mt
=
mi
->
mi_targets
[
candidate
];
metaconn_t
*
mc
=
*
mcp
;
metasingleconn_t
*
msc
=
&
mc
->
mc_conns
[
candidate
];
...
...
@@ -418,6 +419,12 @@ meta_search_dobind_result(
LDAP_BACK_CONN_ISANON_SET
(
msc
);
}
else
{
if
(
META_BACK_TGT_SAVECRED
(
mt
)
&&
!
BER_BVISNULL
(
&
msc
->
msc_cred
)
&&
!
BER_BVISEMPTY
(
&
msc
->
msc_cred
)
)
{
ldap_set_rebind_proc
(
msc
->
msc_ld
,
mt
->
mt_rebind_f
,
msc
);
}
LDAP_BACK_CONN_ISBOUND_SET
(
msc
);
}
retcode
=
META_SEARCH_CANDIDATE
;
...
...
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