mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
ITS#10320 autogroup: mark internal searches
Avoid any other overlays munging autogroup's searches
This commit is contained in:
parent
015f2937ba
commit
2e049ef878
1 changed files with 2 additions and 0 deletions
|
|
@ -529,6 +529,7 @@ autogroup_add_members_from_filter( Operation *op, Entry *e, autogroup_entry_t *a
|
||||||
o.ors_attrs = agf->agf_anlist ? agf->agf_anlist : slap_anlist_no_attrs;
|
o.ors_attrs = agf->agf_anlist ? agf->agf_anlist : slap_anlist_no_attrs;
|
||||||
o.o_do_not_cache = 1;
|
o.o_do_not_cache = 1;
|
||||||
o.o_abandon = 0;
|
o.o_abandon = 0;
|
||||||
|
o.o_managedsait = SLAP_CONTROL_NONCRITICAL;
|
||||||
|
|
||||||
agg.agg_group = age;
|
agg.agg_group = age;
|
||||||
agg.agg_filter = agf;
|
agg.agg_filter = agf;
|
||||||
|
|
@ -2130,6 +2131,7 @@ autogroup_db_open(
|
||||||
op->ors_slimit = SLAP_NO_LIMIT;
|
op->ors_slimit = SLAP_NO_LIMIT;
|
||||||
op->ors_attrs = slap_anlist_no_attrs;
|
op->ors_attrs = slap_anlist_no_attrs;
|
||||||
op->o_do_not_cache = 1;
|
op->o_do_not_cache = 1;
|
||||||
|
op->o_managedsait = SLAP_CONTROL_CRITICAL;
|
||||||
|
|
||||||
op->o_bd = be;
|
op->o_bd = be;
|
||||||
op->o_bd->bd_info = (BackendInfo *)on->on_info;
|
op->o_bd->bd_info = (BackendInfo *)on->on_info;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue