blind fix (accrding to back-monitor hack)

This commit is contained in:
Pierangelo Masarati 2003-02-26 19:41:27 +00:00
parent dd3157bbe9
commit 7ab954d516
2 changed files with 3 additions and 3 deletions

View File

@ -409,7 +409,7 @@ backsql_id2entry( backsql_srch_info *bsi, Entry *e, backsql_entryID *eid )
bsi, 0, AVL_INORDER ); bsi, 0, AVL_INORDER );
} }
if ( attr_merge_one( bsi->e, ad_oc, &bsi->oc->oc->soc_cname ) ) { if ( attr_mergeit_one( bsi->e, ad_oc, &bsi->oc->oc->soc_cname ) ) {
entry_free( e ); entry_free( e );
return NULL; return NULL;
} }
@ -436,7 +436,7 @@ backsql_id2entry( backsql_srch_info *bsi, Entry *e, backsql_entryID *eid )
if ( bsi->bsi_flags | BSQL_SF_ALL_OPER if ( bsi->bsi_flags | BSQL_SF_ALL_OPER
|| an_find( bsi->attrs, &AllOper ) ) { || an_find( bsi->attrs, &AllOper ) ) {
if ( attr_merge_one( bsi->e, ad_soc, &soc ) ) { if ( attr_mergeit_one( bsi->e, ad_soc, &soc ) ) {
entry_free( e ); entry_free( e );
return NULL; return NULL;
} }

View File

@ -255,7 +255,7 @@ backsql_entry_addattr(
return 0; return 0;
} }
rc = attr_merge_one( e, ad, at_val ); rc = attr_mergeit_one( e, ad, at_val );
if ( rc != 0 ) { if ( rc != 0 ) {
Debug( LDAP_DEBUG_TRACE, "backsql_entry_addattr(): " Debug( LDAP_DEBUG_TRACE, "backsql_entry_addattr(): "