]> git.sur5r.net Git - openldap/commitdiff
cleanup error messages and logs
authorPierangelo Masarati <ando@openldap.org>
Tue, 13 Apr 2004 15:59:51 +0000 (15:59 +0000)
committerPierangelo Masarati <ando@openldap.org>
Tue, 13 Apr 2004 15:59:51 +0000 (15:59 +0000)
servers/slapd/back-sql/sql-wrap.c

index 91df43f3a50fbd1492b049b73491ae1886a084a9..86b46893163929f3c865a7ce598cf4e51f0a3b33 100644 (file)
@@ -47,17 +47,13 @@ backsql_PrintErrors( SQLHENV henv, SQLHDBC hdbc, SQLHSTMT sth, int rc )
 
        Debug( LDAP_DEBUG_TRACE, "Return code: %d\n", rc, 0, 0 );
 
-
-       rc = SQLError( henv, hdbc, sth, state, &iSqlCode, msg,
-                       SQL_MAX_MESSAGE_LENGTH - 1, &len );
-       for ( ; BACKSQL_SUCCESS( rc ); ) {
-               Debug( LDAP_DEBUG_TRACE, "Native error code: %d\n", 
-                               (int)iSqlCode, 0, 0 );
-               Debug( LDAP_DEBUG_TRACE, "SQL engine state: %s\n", 
-                               state, 0, 0 );
-               Debug( LDAP_DEBUG_TRACE, "Message: %s\n", msg, 0, 0 );
-               rc = SQLError( henv, hdbc, sth, state, &iSqlCode, msg,
-                               SQL_MAX_MESSAGE_LENGTH - 1, &len );
+       for ( ; rc = SQLError( henv, hdbc, sth, state, &iSqlCode, msg,
+                       SQL_MAX_MESSAGE_LENGTH - 1, &len ), BACKSQL_SUCCESS( rc ); ) {
+               Debug( LDAP_DEBUG_TRACE,
+                               "   Native error code: %d\n"
+                               "   SQL engine state:  %s\n"
+                               "   Message:           %s\n", 
+                               (int)iSqlCode, state, msg );
        }
 }