mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-14 08:13:10 -05:00
Cleanup
Log the same pointer in queue_csn as graduate_
This commit is contained in:
parent
71c907fb88
commit
e635a53ff0
1 changed files with 2 additions and 2 deletions
|
|
@ -120,7 +120,7 @@ slap_graduate_commit_csn( Operation *op )
|
|||
LDAP_TAILQ_REMOVE( be->be_pending_csn_list,
|
||||
csne, ce_csn_link );
|
||||
Debug( LDAP_DEBUG_SYNC, "slap_graduate_commit_csn: removing %p %s\n",
|
||||
csne->ce_csn.bv_val, csne->ce_csn.bv_val, 0 );
|
||||
csne, csne->ce_csn.bv_val, 0 );
|
||||
if ( op->o_csn.bv_val == csne->ce_csn.bv_val ) {
|
||||
BER_BVZERO( &op->o_csn );
|
||||
}
|
||||
|
|
@ -186,7 +186,7 @@ slap_queue_csn(
|
|||
pending = (struct slap_csn_entry *) ch_calloc( 1,
|
||||
sizeof( struct slap_csn_entry ));
|
||||
|
||||
Debug( LDAP_DEBUG_SYNC, "slap_queue_csn: queueing %p %s\n", csn->bv_val, csn->bv_val, 0 );
|
||||
Debug( LDAP_DEBUG_SYNC, "slap_queue_csn: queueing %p %s\n", pending, csn->bv_val, 0 );
|
||||
|
||||
ber_dupbv( &pending->ce_csn, csn );
|
||||
ber_bvreplace_x( &op->o_csn, &pending->ce_csn, op->o_tmpmemctx );
|
||||
|
|
|
|||
Loading…
Reference in a new issue