]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* Whitespace style fixes. No functional change.
authorRuediger Pluem <rpluem@apache.org>
Tue, 14 Apr 2020 09:43:48 +0000 (09:43 +0000)
committerRuediger Pluem <rpluem@apache.org>
Tue, 14 Apr 2020 09:43:48 +0000 (09:43 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1876493 13f79535-47bb-0310-9956-ffa450edef68

support/htcacheclean.c

index 938a8cca57e926d983ec03f9c529e02bee2aaa53..609b2e5cc13618adf3890b52e55974b75d534005 100644 (file)
@@ -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;
         }