mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 16:49:39 -05:00
More for ITS#8460
accesslog can alter the timestamp on contextCSN updates
This commit is contained in:
parent
f6510ec83b
commit
589331ea75
1 changed files with 4 additions and 0 deletions
|
|
@ -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 a new issue