Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
ingo Voss
OpenLDAP
Commits
948fa424
Commit
948fa424
authored
Dec 09, 2004
by
Howard Chu
Browse files
Fix prev commit
parent
423c53d2
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/connection.c
View file @
948fa424
...
...
@@ -711,8 +711,12 @@ static void connection_abandon( Connection *c )
/* c_mutex must be locked by caller */
Operation
*
o
,
*
next
,
op
=
{
0
};
Opheader
ohdr
=
{
0
};
SlapReply
rs
=
{
0
};
op
.
o_hdr
=
&
ohdr
;
op
.
o_conn
=
c
;
op
.
o_connid
=
c
->
c_connid
;
op
.
o_tag
=
LDAP_REQ_ABANDON
;
for
(
o
=
LDAP_STAILQ_FIRST
(
&
c
->
c_ops
);
o
;
o
=
next
)
{
next
=
LDAP_STAILQ_NEXT
(
o
,
o_next
);
...
...
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