diff options
author | Ruediger Pluem <rpluem@apache.org> | 2008-05-14 22:26:35 +0200 |
---|---|---|
committer | Ruediger Pluem <rpluem@apache.org> | 2008-05-14 22:26:35 +0200 |
commit | 924cc6d6f30b9a5d2cdb070a6b07686c34514082 (patch) | |
tree | b0c3f26ffb8beb6104634fc712fe64784ab03fcc /support/htcacheclean.c | |
parent | Check return value of apr_file_read_full. (diff) | |
download | apache2-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.c | 10 |
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; } } } |