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
orbea -
OpenLDAP
Commits
7e893c75
Commit
7e893c75
authored
Jan 21, 2012
by
Kevan Carstensen
Committed by
Howard Chu
Jan 21, 2012
Browse files
ITS#7113 fix check order in connection_write()
parent
5ca62457
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/connection.c
View file @
7e893c75
...
...
@@ -1892,8 +1892,6 @@ int connection_write(ber_socket_t s)
assert
(
connections
!=
NULL
);
slapd_clr_write
(
s
,
0
);
c
=
connection_get
(
s
);
if
(
c
==
NULL
)
{
Debug
(
LDAP_DEBUG_ANY
,
...
...
@@ -1902,6 +1900,8 @@ int connection_write(ber_socket_t s)
return
-
1
;
}
slapd_clr_write
(
s
,
0
);
#ifdef HAVE_TLS
if
(
c
->
c_is_tls
&&
c
->
c_needs_tls_accept
)
{
connection_return
(
c
);
...
...
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