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
c1583643
Commit
c1583643
authored
May 18, 2008
by
Pierangelo Masarati
Browse files
import fix to ITS#5513
parent
44d088c9
Changes
2
Show whitespace changes
Inline
Side-by-side
CHANGES
View file @
c1583643
OpenLDAP 2.4 Change Log
OpenLDAP 2.4.10 Engineering
Fixed slapd-ldap entry_get() op-dependent behavior (ITS#5513)
OpenLDAP 2.4.9 Release (2008/05/07)
Fixed libldap to use unsigned port (ITS#5436)
...
...
servers/slapd/back-ldap/search.c
View file @
c1583643
...
...
@@ -773,8 +773,9 @@ ldap_back_entry_get(
ldapinfo_t
*
li
=
(
ldapinfo_t
*
)
op
->
o_bd
->
be_private
;
ldapconn_t
*
lc
=
NULL
;
int
rc
=
1
,
int
rc
,
do_not_cache
;
ber_tag_t
tag
;
struct
berval
bdn
;
LDAPMessage
*
result
=
NULL
,
*
e
=
NULL
;
...
...
@@ -788,12 +789,18 @@ ldap_back_entry_get(
/* Tell getconn this is a privileged op */
do_not_cache
=
op
->
o_do_not_cache
;
tag
=
op
->
o_tag
;
/* do not cache */
op
->
o_do_not_cache
=
1
;
if
(
!
ldap_back_dobind
(
&
lc
,
op
,
&
rs
,
LDAP_BACK_DONTSEND
)
)
{
/* ldap_back_entry_get() is an entry lookup, so it does not need
* to know what the entry is being looked up for */
op
->
o_tag
=
LDAP_REQ_SEARCH
;
rc
=
ldap_back_dobind
(
&
lc
,
op
,
&
rs
,
LDAP_BACK_DONTSEND
);
op
->
o_do_not_cache
=
do_not_cache
;
op
->
o_tag
=
tag
;
if
(
!
rc
)
{
return
rs
.
sr_err
;
}
op
->
o_do_not_cache
=
do_not_cache
;
if
(
at
)
{
attrp
=
attr
;
...
...
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