mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 08:39:37 -05:00
filter2bv can't de-normalize UUIDs, must do it explicitly for back-ldap
in test045
This commit is contained in:
parent
61da1918a6
commit
f96e6378d6
1 changed files with 4 additions and 0 deletions
|
|
@ -2051,8 +2051,12 @@ syncrepl_del_nonpresent(
|
|||
|
||||
for (i=0; uuids[i].bv_val; i++) {
|
||||
op->ors_slimit = 1;
|
||||
slap_uuidstr_from_normalized( &uf.f_av_value, &uuids[i],
|
||||
op->o_tmpmemctx );
|
||||
filter2bv_x( op, op->ors_filter, &op->ors_filterstr );
|
||||
uf.f_av_value = uuids[i];
|
||||
rc = be->be_search( op, &rs_search );
|
||||
op->o_tmpfree( op->ors_filterstr.bv_val, op->o_tmpmemctx );
|
||||
}
|
||||
si->si_refreshDelete ^= NP_DELETE_ONE;
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue