mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
ITS#3551 return SLAPD_ABANDON on abandon...
This commit is contained in:
parent
0f18e6ce24
commit
d74a9f066a
1 changed files with 3 additions and 1 deletions
|
|
@ -396,7 +396,9 @@ end_of_loop:;
|
|||
|
||||
break;
|
||||
}
|
||||
if ( !op->o_abandon ) {
|
||||
if ( op->o_abandon ) {
|
||||
rs->sr_err = SLAPD_ABANDON;
|
||||
} else {
|
||||
op->o_callback = cb.sc_next;
|
||||
rs->sr_err = gs.err;
|
||||
rs->sr_matched = gs.matched;
|
||||
|
|
|
|||
Loading…
Reference in a new issue