From: Automatic source maintenance Date: Tue, 31 Jan 2012 01:57:05 +0000 (-0700) Subject: SourceFormat Enforcement X-Git-Tag: BumpSslServerFirst.take05~12^2~64 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4db8126a3956bc465fd549789dc198a22e578203;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/StoreSwapLogData.cc b/src/StoreSwapLogData.cc index e8856601f6..f47c268d8a 100644 --- a/src/StoreSwapLogData.cc +++ b/src/StoreSwapLogData.cc @@ -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)