Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
David Barchiesi
OpenLDAP
Commits
dfe1f649
Commit
dfe1f649
authored
Dec 20, 2020
by
Howard Chu
Browse files
ITS#9428 fix cancel exop
parent
27428b96
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/cancel.c
View file @
dfe1f649
...
...
@@ -65,6 +65,11 @@ int cancel_extop( Operation *op, SlapReply *rs )
return
LDAP_PROTOCOL_ERROR
;
}
if
(
opid
==
op
->
o_msgid
)
{
op
->
o_cancel
=
SLAP_CANCEL_DONE
;
return
LDAP_SUCCESS
;
}
ldap_pvt_thread_mutex_lock
(
&
op
->
o_conn
->
c_mutex
);
if
(
op
->
o_abandon
)
{
...
...
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