mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
ITS#5532
This commit is contained in:
parent
2538f09e2e
commit
72578761be
2 changed files with 3 additions and 1 deletions
1
CHANGES
1
CHANGES
|
|
@ -1,6 +1,7 @@
|
|||
OpenLDAP 2.3 Change Log
|
||||
|
||||
OpenLDAP 2.3.43 Engineering
|
||||
Fixed slapd replog timestamps (ITS#5532)
|
||||
|
||||
OpenLDAP 2.3.42 Release (2008/05/28)
|
||||
Fixed libldap file descriptor leak with SELinux (ITS#5507)
|
||||
|
|
|
|||
|
|
@ -168,7 +168,7 @@ replog( Operation *op )
|
|||
int count = 0;
|
||||
#endif
|
||||
int subsets = 0;
|
||||
long now = slap_get_time();
|
||||
long now;
|
||||
char *replogfile;
|
||||
|
||||
replogfile = op->o_bd->be_replogfile ? op->o_bd->be_replogfile :
|
||||
|
|
@ -183,6 +183,7 @@ replog( Operation *op )
|
|||
return;
|
||||
}
|
||||
|
||||
now = slap_get_time();
|
||||
for ( i = 0; op->o_bd->be_replica != NULL && op->o_bd->be_replica[i] != NULL; i++ ) {
|
||||
/* check if dn's suffix matches legal suffixes, if any */
|
||||
if ( op->o_bd->be_replica[i]->ri_nsuffix != NULL ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue