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
a7b1d7a6
Commit
a7b1d7a6
authored
May 16, 2006
by
Kurt Zeilenga
Browse files
From HEAD:
+ Fixed slapd-bdb/hdb referral issue (ITS#4548)
parent
8007d669
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
a7b1d7a6
...
...
@@ -19,8 +19,9 @@ OpenLDAP 2.3.22 Release
Fixed slapd slap_send_ldap_result bug (ITS#4499)
Fixed slapd thread pool init issue (ITS#4513)
Added slapd syncrepl mandatory searchbase check
Fixed slapd-bdb pre/post-read freeing (ITS#4532)
Fixed slapd-bdb pre/post-read unavailable issue (ITS#4538)
Fixed slapd-bdb/hdb pre/post-read freeing (ITS#4532)
Fixed slapd-bdb/hdb pre/post-read unavailable issue (ITS#4538)
Fixed slapd-bdb/hdb referral issue (ITS#4548)
Fixed slapd-hdb IDL sort issue (ITS#4531)
Fixed slapd-ldap proxyAuthz of bound identity/override (ITS#4497)
Fixed slapd-ldap/meta protocol version propagation (ITS#4488)
...
...
servers/slapd/back-bdb/referral.c
View file @
a7b1d7a6
...
...
@@ -91,8 +91,11 @@ dn2entry_retry:
(
long
)
op
->
o_tag
,
op
->
o_req_dn
.
bv_val
,
e
->
e_name
.
bv_val
);
if
(
is_entry_referral
(
e
)
)
{
BerVarray
ref
=
get_entry_referrals
(
op
,
e
);
rc
=
LDAP_OTHER
;
rs
->
sr_ref
=
get_entry_referrals
(
op
,
e
);
rs
->
sr_ref
=
referral_rewrite
(
ref
,
NULL
,
&
op
->
o_req_dn
,
LDAP_SCOPE_DEFAULT
);
ber_bvarray_free
(
ref
);
if
(
rs
->
sr_ref
)
{
rs
->
sr_matched
=
ber_strdup_x
(
e
->
e_name
.
bv_val
,
op
->
o_tmpmemctx
);
...
...
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