mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-30 11:39:34 -05:00
cleanup error messages and logs
This commit is contained in:
parent
3ea4368913
commit
faa1385f51
1 changed files with 5 additions and 3 deletions
|
|
@ -355,14 +355,16 @@ backsql_load_schema_map( backsql_info *si, SQLHDBC dbh )
|
|||
rc = SQLExecute( at_sth );
|
||||
if ( rc != SQL_SUCCESS ) {
|
||||
Debug( LDAP_DEBUG_TRACE, "backsql_load_schema_map(): "
|
||||
"error executing at_query: \n", 0, 0, 0 );
|
||||
"error executing at_query\n"
|
||||
" \"%s\"\n"
|
||||
" with param oc_id=\"%lu\": \n",
|
||||
si->at_query, oc_id, 0 );
|
||||
backsql_PrintErrors( SQL_NULL_HENV, dbh, at_sth, rc );
|
||||
return LDAP_OTHER;
|
||||
}
|
||||
|
||||
backsql_BindRowAsStrings( at_sth, &at_row );
|
||||
rc = SQLFetch( at_sth );
|
||||
for ( ; BACKSQL_SUCCESS(rc); rc = SQLFetch( at_sth ) ) {
|
||||
for ( ; rc = SQLFetch( at_sth ), BACKSQL_SUCCESS( rc ); ) {
|
||||
const char *text = NULL;
|
||||
struct berval bv;
|
||||
struct berbuf bb = BB_NULL;
|
||||
|
|
|
|||
Loading…
Reference in a new issue