This commit is contained in:
Pierangelo Masarati 2005-08-10 10:25:24 +00:00
parent f38e72b26c
commit f8407435cc
2 changed files with 6 additions and 8 deletions

View file

@ -196,7 +196,7 @@ int backend_startup_one(Backend *be)
assert( be != NULL );
be->be_pending_csn_list = (struct be_pcl *)
ch_calloc( 1, sizeof( struct be_pcl ));
ch_calloc( 1, sizeof( struct be_pcl ) );
LDAP_TAILQ_INIT( be->be_pending_csn_list );

View file

@ -344,13 +344,11 @@ fe_op_modify( Operation *op, SlapReply *rs )
goto cleanup;
}
{
rs->sr_err = slap_mods_obsolete_check( op, modlist,
&rs->sr_text, textbuf, textlen );
if ( rs->sr_err != LDAP_SUCCESS ) {
send_ldap_result( op, rs );
goto cleanup;
}
rs->sr_err = slap_mods_obsolete_check( op, modlist,
&rs->sr_text, textbuf, textlen );
if ( rs->sr_err != LDAP_SUCCESS ) {
send_ldap_result( op, rs );
goto cleanup;
}
/* check for modify/increment support */