Skip to content
Snippets Groups Projects
Commit 89697d3a authored by Howard Chu's avatar Howard Chu
Browse files

Each refint op needs a unique timestamp, must perform searches as rootdn

parent d145f84e
No related branches found
No related tags found
No related merge requests found
......@@ -472,6 +472,9 @@ refint_qtask( void *ctx, void *arg )
op->o_req_ndn = id->dn;
op->o_req_dn = id->dn;
op->o_bd = rq->db;
op->o_dn = op->o_bd->be_rootdn;
op->o_ndn = op->o_bd->be_rootndn;
slap_op_time( &op->o_time, &op->o_tincr );
/* search */
rc = op->o_bd->be_search(op, &rs);
......@@ -571,6 +574,7 @@ refint_qtask( void *ctx, void *arg )
op->o_dn = op->o_bd->be_rootdn;
op->o_ndn = op->o_bd->be_rootndn;
slap_op_time( &op->o_time, &op->o_tincr );
if((rc = op->o_bd->be_modify(op, &rs)) != LDAP_SUCCESS) {
Debug( LDAP_DEBUG_TRACE,
"refint_response: dependent modify failed: %d\n",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment