summaryrefslogtreecommitdiffstats
path: root/support/htcacheclean.c
diff options
context:
space:
mode:
authorRuediger Pluem <rpluem@apache.org>2008-05-14 22:26:35 +0200
committerRuediger Pluem <rpluem@apache.org>2008-05-14 22:26:35 +0200
commit924cc6d6f30b9a5d2cdb070a6b07686c34514082 (patch)
treeb0c3f26ffb8beb6104634fc712fe64784ab03fcc /support/htcacheclean.c
parentCheck return value of apr_file_read_full. (diff)
downloadapache2-924cc6d6f30b9a5d2cdb070a6b07686c34514082.tar.xz
apache2-924cc6d6f30b9a5d2cdb070a6b07686c34514082.zip
* Fix style by doing correct indenting
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@656413 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/htcacheclean.c')
-rw-r--r--support/htcacheclean.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/support/htcacheclean.c b/support/htcacheclean.c
index 6a0a062619..56f99e9612 100644
--- a/support/htcacheclean.c
+++ b/support/htcacheclean.c
@@ -535,12 +535,12 @@ static int process_dir(char *path, apr_pool_t *pool)
if (apr_file_read_full(fd, &expires, len,
&len) == APR_SUCCESS) {
- apr_file_close(fd);
+ apr_file_close(fd);
- if (expires < current) {
- delete_entry(path, d->basename, p);
- }
- break;
+ if (expires < current) {
+ delete_entry(path, d->basename, p);
+ }
+ break;
}
}
}