mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
More for ITS#8460
accesslog can alter the timestamp on contextCSN updates
This commit is contained in:
parent
f6510ec83b
commit
589331ea75
@ -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 );
|
||||
|
Loading…
Reference in New Issue
Block a user