Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
openldap
OpenLDAP
Commits
9d0e8485
Commit
9d0e8485
authored
Dec 20, 2020
by
Howard Chu
Committed by
Quanah Gibson-Mount
Dec 21, 2020
Browse files
ITS#9428 fix cancel exop
parent
70caf584
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/cancel.c
View file @
9d0e8485
...
...
@@ -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