Delete curcsn arg to slap_get_commit_csn, redundant with op->o_csn

This commit is contained in:
Howard Chu 2006-08-15 09:25:42 +00:00
parent 7036e2bb89
commit 789c76b4ce

View File

@ -1489,7 +1489,7 @@ syncprov_op_response( Operation *op, SlapReply *rs )
/* Update our context CSN */
cbuf[0] = '\0';
ldap_pvt_thread_mutex_lock( &si->si_csn_mutex );
slap_get_commit_csn( op, &maxcsn, NULL );
slap_get_commit_csn( op, &maxcsn );
if ( !BER_BVISNULL( &maxcsn ) ) {
strcpy( cbuf, maxcsn.bv_val );
if ( ber_bvcmp( &maxcsn, &si->si_ctxcsn ) > 0 ) {