From: Automatic source maintenance Date: Wed, 17 Oct 2012 06:47:41 +0000 (-0600) Subject: SourceFormat Enforcement X-Git-Tag: SQUID_3_2_3~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ecee623a401bd78641f04dd824055e8d0594f7ab;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/client_side_request.cc b/src/client_side_request.cc index 57ff34f9e2..4281c5f4f8 100644 --- a/src/client_side_request.cc +++ b/src/client_side_request.cc @@ -1034,7 +1034,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 aa977b0350..f00922871d 100644 --- a/src/ipc/Queue.cc +++ b/src/ipc/Queue.cc @@ -49,7 +49,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 {