mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
ITS#5370
This commit is contained in:
parent
aa73219c2e
commit
03055d0e2c
2 changed files with 2 additions and 1 deletions
1
CHANGES
1
CHANGES
|
|
@ -2,6 +2,7 @@ OpenLDAP 2.3 Change Log
|
|||
|
||||
OpenLDAP 2.3.41 Engineering
|
||||
Fixed slapd idlcache on adds (ITS#5086)
|
||||
Fixed slapd timestamp race condition (ITS#5370)
|
||||
Fixed slapd-bdb modrdn to same dn (ITS#5319)
|
||||
Fixed slapd-bdb crash with modrdn (ITS#5358)
|
||||
Fixed slapo-accesslog cleanup on successful response (ITS#5374)
|
||||
|
|
|
|||
|
|
@ -121,8 +121,8 @@ slap_op_free( Operation *op )
|
|||
void
|
||||
slap_op_time(time_t *t, int *nop)
|
||||
{
|
||||
*t = slap_get_time();
|
||||
ldap_pvt_thread_mutex_lock( &slap_op_mutex );
|
||||
*t = slap_get_time();
|
||||
if ( *t == last_time ) {
|
||||
*nop = ++last_incr;
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue