Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
51a2fd8e
Commit
51a2fd8e
authored
Dec 04, 2009
by
Quanah Gibson-Mount
Browse files
ITS#6412
parent
dcd15bcd
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
51a2fd8e
...
...
@@ -2,6 +2,7 @@ OpenLDAP 2.4 Change Log
OpenLDAP 2.4.21 Engineering
Fixed liblutil for negative time offsets (ITS#6405)
Fixed slapd looping with SSL/TLS connections (ITS#6412)
Fixed slapd use correct ce_type (ITS#6408)
Fixed slapo-translucent with back-null (ITS#6403)
Fixed slapo-unique conflict with ppolicy (ITS#6270)
...
...
servers/slapd/connection.c
View file @
51a2fd8e
...
...
@@ -1362,8 +1362,8 @@ connection_read( ber_socket_t s, conn_readinfo *cri )
c
->
c_connid
,
(
int
)
s
,
c
->
c_tls_ssf
,
c
->
c_ssf
,
0
);
slap_sasl_external
(
c
,
c
->
c_tls_ssf
,
&
authid
);
if
(
authid
.
bv_val
)
free
(
authid
.
bv_val
);
}
else
if
(
rc
==
1
)
{
/* need to retry */
slapd_set_read
(
s
,
0
);
}
else
if
(
rc
==
1
&&
ber_sockbuf_ctrl
(
c
->
c_sb
,
LBER_SB_OPT_NEEDS_WRITE
,
NULL
))
{
/* need to retry */
slapd_set_write
(
s
,
1
);
connection_return
(
c
);
return
0
;
...
...
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