From: Automatic source maintenance Date: Wed, 17 Oct 2012 02:59:09 +0000 (-0600) Subject: SourceFormat Enforcement X-Git-Tag: SQUID_3_3_0_1~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7051cfa8e9fd52c56dfaacd015afd29a0a0b13d1;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/client_side_request.cc b/src/client_side_request.cc index 3eb84a8667..39e28bd19b 100644 --- a/src/client_side_request.cc +++ b/src/client_side_request.cc @@ -1050,7 +1050,7 @@ clientInterpretRequestHeaders(ClientHttpRequest * http) if (request->cache_control->noCache()) no_cache=true; - // RFC 2616: treat Pragma:no-cache as if it was Cache-Control:no-cache when Cache-Control is missing + // RFC 2616: treat Pragma:no-cache as if it was Cache-Control:no-cache when Cache-Control is missing } else if (req_hdr->has(HDR_PRAGMA)) no_cache = req_hdr->hasListMember(HDR_PRAGMA,"no-cache",','); diff --git a/src/ipc/Queue.cc b/src/ipc/Queue.cc index 0a47af1957..06e01c61b0 100644 --- a/src/ipc/Queue.cc +++ b/src/ipc/Queue.cc @@ -46,7 +46,7 @@ Ipc::QueueReader::QueueReader(): popBlocked(1), popSignal(0), /* QueueReaders */ Ipc::QueueReaders::QueueReaders(const int aCapacity): theCapacity(aCapacity), - theReaders(theCapacity) + theReaders(theCapacity) { Must(theCapacity > 0); } diff --git a/src/ipc/mem/FlexibleArray.h b/src/ipc/mem/FlexibleArray.h index 0af9971f06..78bcee4e43 100644 --- a/src/ipc/mem/FlexibleArray.h +++ b/src/ipc/mem/FlexibleArray.h @@ -5,7 +5,7 @@ #define SQUID_IPC_MEM_FLEXIBLE_ARRAY_H // sometimes required for placement-new operator to be declared -#include +#include namespace Ipc {