mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
no caching flag in Operation structure
This commit is contained in:
parent
67b485e3ee
commit
d5823fa912
2 changed files with 3 additions and 0 deletions
|
|
@ -1981,6 +1981,7 @@ typedef struct slap_op {
|
|||
ValuesReturnFilter *o_vrFilter; /* ValuesReturnFilter */
|
||||
|
||||
syncinfo_t* o_si;
|
||||
int o_nocaching;
|
||||
|
||||
#ifdef LDAP_SLAPI
|
||||
void *o_pb; /* NS-SLAPI plugin */
|
||||
|
|
|
|||
|
|
@ -1114,7 +1114,9 @@ syncrepl_del_nonpresent(
|
|||
op->ors_filter = filter;
|
||||
ber_str2bv( si->filterstr, strlen( si->filterstr ), 1, &op->ors_filterstr );
|
||||
|
||||
op->o_nocaching = 1;
|
||||
be->be_search( op, &rs );
|
||||
op->o_nocaching = 0;
|
||||
|
||||
if ( !LDAP_LIST_EMPTY( &si->nonpresentlist ) ) {
|
||||
np_list = LDAP_LIST_FIRST( &si->nonpresentlist );
|
||||
|
|
|
|||
Loading…
Reference in a new issue