mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-24 13:24:56 +08:00
Don't do anything if this is a syncrepl response.
This commit is contained in:
parent
143a1cdae1
commit
f6be095299
@ -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 New Issue
Block a user