mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-06 23:19:59 -05:00
ITS#4423, fix sessionlog lower bound in playlog
This commit is contained in:
parent
a8f8dfe747
commit
608c85a9f0
1 changed files with 1 additions and 1 deletions
|
|
@ -1346,7 +1346,7 @@ syncprov_playlog( Operation *op, SlapReply *rs, sessionlog *sl,
|
|||
* unlock the list mutex.
|
||||
*/
|
||||
for ( se=sl->sl_head; se; se=se->se_next ) {
|
||||
if ( ber_bvcmp( &se->se_csn, oldcsn ) < 0 ) continue;
|
||||
if ( ber_bvcmp( &se->se_csn, oldcsn ) <= 0 ) continue;
|
||||
if ( ber_bvcmp( &se->se_csn, ctxcsn ) > 0 ) break;
|
||||
if ( se->se_tag == LDAP_REQ_DELETE ) {
|
||||
j = i;
|
||||
|
|
|
|||
Loading…
Reference in a new issue