summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorRuediger Pluem <rpluem@apache.org>2020-04-14 09:43:48 +0000
committerRuediger Pluem <rpluem@apache.org>2020-04-14 09:43:48 +0000
commit5cad59790c243871e490419e26c7b46effa7b278 (patch)
tree0038c88c721ea40b0d6dbfa758d7b83f7a2d2971 /support
parent6c8663602c9b3b821044a12963a365a030ae8526 (diff)
downloadhttpd-5cad59790c243871e490419e26c7b46effa7b278.tar.gz
* Whitespace style fixes. No functional change.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1876493 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support')
-rw-r--r--support/htcacheclean.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/support/htcacheclean.c b/support/htcacheclean.c
index 938a8cca57..609b2e5cc1 100644
--- a/support/htcacheclean.c
+++ b/support/htcacheclean.c
@@ -685,7 +685,8 @@ static int process_dir(char *path, apr_pool_t *pool, apr_off_t *nodes)
}
if (info.filetype == APR_DIR) {
- char *dirpath=apr_pstrdup(p, d->basename);
+ char *dirpath = apr_pstrdup(p, d->basename);
+
if (process_dir(d->basename, pool, nodes)) {
return 1;
}
@@ -695,7 +696,7 @@ static int process_dir(char *path, apr_pool_t *pool, apr_off_t *nodes)
* If it fails, it likely means there was something else there.
*/
if (deldirs && !dryrun) {
- apr_dir_remove(dirpath,p);
+ apr_dir_remove(dirpath, p);
}
continue;
}