summaryrefslogtreecommitdiffstats
path: root/support
diff options
context:
space:
mode:
authorColm MacCarthaigh <colm@apache.org>2005-10-24 14:18:54 +0200
committerColm MacCarthaigh <colm@apache.org>2005-10-24 14:18:54 +0200
commitf8ee6a0da2e34d806cd1ae3b91bc5c942d952e43 (patch)
tree7b49936c697bfdc9f6d91312279049c1398d7729 /support
parentUpdate transformations, mainly to reflect the fe80 -> 2001:db8 changes. (diff)
downloadapache2-f8ee6a0da2e34d806cd1ae3b91bc5c942d952e43.tar.xz
apache2-f8ee6a0da2e34d806cd1ae3b91bc5c942d952e43.zip
Logresolve style and nit fix-ups:
* Remove some redundant whitespace in variable declarations. * Add some whitespace for clarity around an if and a while statement. * Remove redundant and unneccessary casts * Use APR_HASH_KEY_STRING git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@328048 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support')
-rw-r--r--support/logresolve.c55
1 files changed, 27 insertions, 28 deletions
diff --git a/support/logresolve.c b/support/logresolve.c
index 1eb1c7472d..3d28b72112 100644
--- a/support/logresolve.c
+++ b/support/logresolve.c
@@ -126,25 +126,25 @@ static void usage(void)
int main(int argc, const char * const argv[])
{
- apr_file_t * outfile;
- apr_file_t * infile;
- apr_file_t * statsfile;
- apr_sockaddr_t * ip;
- apr_sockaddr_t * ipdouble;
- apr_getopt_t * o;
- apr_pool_t * pool;
- apr_status_t status;
- const char * arg;
- char opt;
- char * stats = NULL;
- char * space;
- char * hostname;
+ apr_file_t * outfile;
+ apr_file_t * infile;
+ apr_file_t * statsfile;
+ apr_sockaddr_t * ip;
+ apr_sockaddr_t * ipdouble;
+ apr_getopt_t * o;
+ apr_pool_t * pool;
+ apr_status_t status;
+ const char * arg;
+ char opt;
+ char * stats = NULL;
+ char * space;
+ char * hostname;
#if APR_MAJOR_VERSION > 1 || (APR_MAJOR_VERSION == 1 && APR_MINOR_VERSION >= 3)
- char * inbuffer;
- char * outbuffer;
+ char * inbuffer;
+ char * outbuffer;
#endif
- char line[2048];
- int doublelookups = 0;
+ char line[2048];
+ int doublelookups = 0;
if (apr_app_initialize(&argc, &argv, NULL) != APR_SUCCESS) {
return 1;
@@ -204,7 +204,7 @@ int main(int argc, const char * const argv[])
cache = apr_hash_make(pool);
- while(apr_file_gets(line, 2048, infile) == APR_SUCCESS) {
+ while (apr_file_gets(line, 2048, infile) == APR_SUCCESS) {
if (line[0] == '\0') {
continue;
}
@@ -220,13 +220,12 @@ int main(int argc, const char * const argv[])
}
/* Terminate the line at the next space */
- if((space = strchr(line, ' ')) != NULL) {
+ if ((space = strchr(line, ' ')) != NULL) {
*space = '\0';
}
/* See if we have it in our cache */
- hostname = (char *) apr_hash_get(cache, (const void *)line,
- strlen(line));
+ hostname = (char *) apr_hash_get(cache, line, APR_HASH_KEY_STRING);
if (hostname) {
apr_file_printf(outfile, "%s %s", hostname, space + 1);
cachehits++;
@@ -238,7 +237,7 @@ int main(int argc, const char * const argv[])
if (status != APR_SUCCESS) {
/* Not an IP address */
withname++;
- *space = ' ';
+ *space = ' ';
apr_file_puts(line, outfile);
continue;
}
@@ -264,8 +263,8 @@ int main(int argc, const char * const argv[])
/* Add to cache */
*space = '\0';
- apr_hash_set(cache, (const void *) line, strlen(line),
- (const void *) apr_pstrdup(pool, line));
+ apr_hash_set(cache, line, APR_HASH_KEY_STRING,
+ apr_pstrdup(pool, line));
continue;
}
@@ -285,8 +284,8 @@ int main(int argc, const char * const argv[])
/* Add to cache */
*space = '\0';
- apr_hash_set(cache, (const void *) line, strlen(line),
- (const void *) apr_pstrdup(pool, line));
+ apr_hash_set(cache, line, APR_HASH_KEY_STRING,
+ apr_pstrdup(pool, line));
continue;
}
}
@@ -295,8 +294,8 @@ int main(int argc, const char * const argv[])
apr_file_printf(outfile, "%s %s", hostname, space + 1);
/* Store it in the cache */
- apr_hash_set(cache, (const void *) line, strlen(line),
- (const void *) apr_pstrdup(pool, hostname));
+ apr_hash_set(cache, line, APR_HASH_KEY_STRING,
+ apr_pstrdup(pool, hostname));
}
/* Flush any remaining output */