mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-03 20:40:05 -05:00
Don't do anything if this is a syncrepl response.
This commit is contained in:
parent
143a1cdae1
commit
f6be095299
1 changed files with 3 additions and 0 deletions
|
|
@ -275,6 +275,9 @@ valsort_response( Operation *op, SlapReply *rs )
|
|||
/* We only want search responses */
|
||||
if ( rs->sr_type != REP_SEARCH ) return SLAP_CB_CONTINUE;
|
||||
|
||||
/* If this is a syncrepl response, pass thru unmodified */
|
||||
if ( op->o_sync > SLAP_CONTROL_IGNORED ) return SLAP_CB_CONTINUE;
|
||||
|
||||
on = (slap_overinst *) op->o_bd->bd_info;
|
||||
vi = on->on_bi.bi_private;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue