You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rp...@apache.org on 2008/05/14 22:26:36 UTC

svn commit: r656413 - /httpd/httpd/trunk/support/htcacheclean.c

Author: rpluem
Date: Wed May 14 13:26:35 2008
New Revision: 656413

URL: http://svn.apache.org/viewvc?rev=656413&view=rev
Log:
* Fix style by doing correct indenting

Modified:
    httpd/httpd/trunk/support/htcacheclean.c

Modified: httpd/httpd/trunk/support/htcacheclean.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/support/htcacheclean.c?rev=656413&r1=656412&r2=656413&view=diff
==============================================================================
--- httpd/httpd/trunk/support/htcacheclean.c (original)
+++ httpd/httpd/trunk/support/htcacheclean.c Wed May 14 13:26:35 2008
@@ -535,12 +535,12 @@
                         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;
                         }
                     }
                 }