More for ITS#8460

accesslog can alter the timestamp on contextCSN updates
This commit is contained in:
Howard Chu 2016-08-11 17:27:35 +01:00
parent f6510ec83b
commit 589331ea75

View File

@ -1959,6 +1959,10 @@ accesslog_op_mod( Operation *op, SlapReply *rs )
return SLAP_CB_CONTINUE;
/* give this a unique timestamp */
op->o_tincr++;
if ( op->o_tincr >= 1000000 ) {
op->o_tincr -= 1000000;
op->o_time++;
}
}
logop = accesslog_op2logop( op );