]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Tue, 31 Jan 2012 01:57:05 +0000 (18:57 -0700)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Tue, 31 Jan 2012 01:57:05 +0000 (18:57 -0700)
src/StoreSwapLogData.cc

index e8856601f60bf546c36aeda8c7b0a240d6928cec..f47c268d8aef8739187544468c951f1809f99887 100644 (file)
@@ -51,12 +51,12 @@ StoreSwapLogData::sane() const
 
     // Check what we safely can; for some fields any value might be valid
     return SWAP_LOG_NOP < op && op < SWAP_LOG_MAX &&
-        swap_filen >= 0 &&
-        timestamp >= minTime &&
-        lastref >= minTime &&
-        expires >= minTime &&
-        lastmod >= minTime &&
-        swap_file_sz > 0; // because swap headers ought to consume space
+           swap_filen >= 0 &&
+           timestamp >= minTime &&
+           lastref >= minTime &&
+           expires >= minTime &&
+           lastmod >= minTime &&
+           swap_file_sz > 0; // because swap headers ought to consume space
 }
 
 StoreSwapLogHeader::StoreSwapLogHeader():op(SWAP_LOG_VERSION), version(1)