X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/f9ba5e2255cf18092750fffacb6a9603571a2be5..42c7f0b4ea09d8971a19beeef743ec8981d4aacc:/src/src/lookups/mysql.c diff --git a/src/src/lookups/mysql.c b/src/src/lookups/mysql.c index 77027fc4b..1984e30b2 100644 --- a/src/src/lookups/mysql.c +++ b/src/src/lookups/mysql.c @@ -101,7 +101,7 @@ mysql_connection *cn; while ((cn = mysql_connections) != NULL) { mysql_connections = cn->next; - DEBUG(D_lookup) debug_printf("close MYSQL connection: %s\n", cn->server); + DEBUG(D_lookup) debug_printf_indent("close MYSQL connection: %s\n", cn->server); mysql_close(cn->handle); } } @@ -152,7 +152,7 @@ database, user, password. We can write to the string, since it is in a nextinlist temporary buffer. The copy of the string that is used for caching has the password removed. This copy is also used for debugging output. */ -for (i = 3; i > 0; i--) +for (int i = 3; i > 0; i--) { uschar *pp = Ustrrchr(server, '/'); if (pp == NULL) @@ -227,7 +227,7 @@ if (!cn) if (sdata[1][0] == 0) sdata[1] = NULL; DEBUG(D_lookup) - debug_printf("MYSQL new connection: host=%s port=%d socket=%s " + debug_printf_indent("MYSQL new connection: host=%s port=%d socket=%s " "database=%s user=%s\n", sdata[0], port, socket, sdata[1], sdata[2]); /* Get store for a new handle, initialize it, and connect to the server */ @@ -260,7 +260,7 @@ if (!cn) else { DEBUG(D_lookup) - debug_printf("MYSQL using cached connection for %s\n", server_copy); + debug_printf_indent("MYSQL using cached connection for %s\n", server_copy); } /* Run the query */ @@ -285,7 +285,7 @@ if (!(mysql_result = mysql_use_result(mysql_handle))) { if ( mysql_field_count(mysql_handle) == 0 ) { - DEBUG(D_lookup) debug_printf("MYSQL: query was not one that returns data\n"); + DEBUG(D_lookup) debug_printf_indent("MYSQL: query was not one that returns data\n"); result = string_cat(result, string_sprintf("%d", mysql_affected_rows(mysql_handle))); *do_cache = 0; @@ -315,7 +315,7 @@ while ((mysql_row_data = mysql_fetch_row(mysql_result))) result = string_catn(result, US"\n", 1); if (num_fields != 1) - for (i = 0; i < num_fields; i++) + for (int i = 0; i < num_fields; i++) result = lf_quote(US fields[i].name, US mysql_row_data[i], lengths[i], result); @@ -331,7 +331,7 @@ while((i = mysql_next_result(mysql_handle)) >= 0) { if(i == 0) /* Just ignore more results */ { - DEBUG(D_lookup) debug_printf("MYSQL: got unexpected more results\n"); + DEBUG(D_lookup) debug_printf_indent("MYSQL: got unexpected more results\n"); continue; } @@ -371,7 +371,7 @@ if (result) } else { - DEBUG(D_lookup) debug_printf("%s\n", *errmsg); + DEBUG(D_lookup) debug_printf_indent("%s\n", *errmsg); return yield; /* FAIL or DEFER */ } }