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
Tero Saarni
OpenLDAP
Commits
f186dfea
Commit
f186dfea
authored
Sep 30, 2009
by
Quanah Gibson-Mount
Browse files
ITS#6296
parent
68ffb3f1
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
f186dfea
...
...
@@ -6,6 +6,7 @@ OpenLDAP 2.4.19 Engineering
Fixed slapd acl cache (ITS#6287)
Fixed slapd tools to allow -n for conversion (ITS#6258)
Fixed slapd-ldap with null timeouts (ITS#6282)
Fixed slapd-ldap with strong binds with relay/translucent (ITS#6296)
Fixed slapd-ldif buffer overflow (ITS#6303)
Fixed slapo-auditlog comments when modifying (ITS#6286)
Fixed slapo-dynlist lock leak (ITS#6308)
...
...
servers/slapd/back-ldap/bind.c
View file @
f186dfea
...
...
@@ -277,6 +277,8 @@ retry:;
ldap_back_controls_free
(
op
,
rs
,
&
ctrls
);
if
(
rc
==
LDAP_SUCCESS
)
{
op
->
o_conn
->
c_authz_cookie
=
op
->
o_bd
->
be_private
;
/* If defined, proxyAuthz will be used also when
* back-ldap is the authorizing backend; for this
* purpose, after a successful bind the connection
...
...
@@ -1523,6 +1525,7 @@ retry:;
rc
=
ldap_back_op_result
(
lc
,
op
,
rs
,
msgid
,
-
1
,
(
sendok
|
LDAP_BACK_BINDING
)
);
if
(
rc
==
LDAP_SUCCESS
)
{
op
->
o_conn
->
c_authz_cookie
=
op
->
o_bd
->
be_private
;
LDAP_BACK_CONN_ISBOUND_SET
(
lc
);
}
...
...
@@ -2249,6 +2252,7 @@ ldap_back_proxy_authz_bind(
* so that referral chasing is attempted using the right
* identity */
LDAP_BACK_CONN_ISBOUND_SET
(
lc
);
op
->
o_conn
->
c_authz_cookie
=
op
->
o_bd
->
be_private
;
if
(
!
BER_BVISNULL
(
binddn
)
)
{
ber_bvreplace
(
&
lc
->
lc_bound_ndn
,
binddn
);
}
...
...
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