This commit is contained in:
Quanah Gibson-Mount 2008-05-28 19:40:51 +00:00
parent 2538f09e2e
commit 72578761be
2 changed files with 3 additions and 1 deletions

View file

@ -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)

View file

@ -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 ) {