]> git.sur5r.net Git - openldap/commitdiff
Cleanup
authorHoward Chu <hyc@openldap.org>
Sat, 24 Oct 2015 05:48:41 +0000 (06:48 +0100)
committerQuanah Gibson-Mount <quanah@openldap.org>
Mon, 26 Oct 2015 21:06:16 +0000 (16:06 -0500)
Log the same pointer in queue_csn as graduate_

servers/slapd/ctxcsn.c

index 8a3b9d0b0f27ac206eb8a94fa6f51befe48947ef..06bea95b7a23534b4e85507fb690989f7d50b4f8 100644 (file)
@@ -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 );
 
        ldap_pvt_thread_mutex_lock( &be->be_pcl_mutex );