mirror of
https://github.com/apache/httpd.git
synced 2025-08-01 16:41:19 +00:00
* Whitespace style fixes. No functional change.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1876493 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -685,7 +685,8 @@ static int process_dir(char *path, apr_pool_t *pool, apr_off_t *nodes)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (info.filetype == APR_DIR) {
|
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)) {
|
if (process_dir(d->basename, pool, nodes)) {
|
||||||
return 1;
|
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 it fails, it likely means there was something else there.
|
||||||
*/
|
*/
|
||||||
if (deldirs && !dryrun) {
|
if (deldirs && !dryrun) {
|
||||||
apr_dir_remove(dirpath,p);
|
apr_dir_remove(dirpath, p);
|
||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user