From 7fb58912ef4702f23e0604b7617b0cc084131af4 Mon Sep 17 00:00:00 2001 From: Colm MacCarthaigh Date: Tue, 6 Mar 2007 01:40:23 +0000 Subject: [PATCH] correct some indentation, no functional changes git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@514949 13f79535-47bb-0310-9956-ffa450edef68 --- support/logresolve.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/support/logresolve.c b/support/logresolve.c index 5414c7653d1..7d7e6474862 100644 --- a/support/logresolve.c +++ b/support/logresolve.c @@ -228,7 +228,7 @@ int main(int argc, const char * const argv[]) hostname = (char *) apr_hash_get(cache, line, APR_HASH_KEY_STRING); if (hostname) { apr_file_printf(outfile, "%s %s", hostname, space + 1); - cachehits++; + cachehits++; continue; } @@ -236,7 +236,7 @@ int main(int argc, const char * const argv[]) status = apr_sockaddr_info_get(&ip, line, APR_UNSPEC ,0, 0, pool); if (status != APR_SUCCESS) { /* Not an IP address */ - withname++; + withname++; if (space) *space = ' '; apr_file_puts(line, outfile); continue; @@ -246,7 +246,7 @@ int main(int argc, const char * const argv[]) * "parsed as an IP address". It does not mean we actually resolved * the IP address into a hostname. */ - resolves++; + resolves++; /* From here on our we cache each result, even if it was not * succesful -- 2.47.2