]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Wed, 17 Oct 2012 00:14:09 +0000 (18:14 -0600)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Wed, 17 Oct 2012 00:14:09 +0000 (18:14 -0600)
src/client_side_request.cc
src/ipc/Queue.cc
src/ipc/mem/FlexibleArray.h

index 3eb84a86677022733e2d15e436b86d41640a232f..39e28bd19b4045eac18b48fbd562a2ab91845cb8 100644 (file)
@@ -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",',');
 
index 0a47af19571c9c9dfa271e58fb8437856de4167b..06e01c61b02776091155a573514bafc7de2e47cd 100644 (file)
@@ -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);
 }
index 0af9971f06e903aa4515f4cafacd9e94fa293a9d..78bcee4e439e2f4656181bbff992a27b1ca33a66 100644 (file)
@@ -5,7 +5,7 @@
 #define SQUID_IPC_MEM_FLEXIBLE_ARRAY_H
 
 // sometimes required for placement-new operator to be declared
-#include <new> 
+#include <new>
 
 namespace Ipc
 {