mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 09:09:54 -05:00
ITS#9428 fix cancel exop
This commit is contained in:
parent
27428b96f5
commit
dfe1f6494d
1 changed files with 5 additions and 0 deletions
|
|
@ -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 ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue