Fix modify/replace.

This commit is contained in:
Kurt Zeilenga 2002-01-19 05:55:18 +00:00
parent b713f42650
commit c043a9c0cf

View File

@ -584,15 +584,10 @@ replace_values(
char *dn char *dn
) )
{ {
int rc = attr_delete( &e->e_attrs, mod->sm_desc ); (void) attr_delete( &e->e_attrs, mod->sm_desc );
if( rc != LDAP_SUCCESS && rc != LDAP_NO_SUCH_ATTRIBUTE ) {
return rc;
}
rc = LDAP_SUCCESS;
if ( mod->sm_bvalues ) { if ( mod->sm_bvalues ) {
rc = add_values( e, mod, dn ); return add_values( e, mod, dn );
} }
return LDAP_SUCCESS; return LDAP_SUCCESS;