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

index 57ff34f9e278c6d7efce92e09bd4053b602a8a74..4281c5f4f88a500c1a817df05dc12afbb8a3c33a 100644 (file)
@@ -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",',');
 
index aa977b0350d242935f8893805fa40fd86fa479a7..f00922871d87dbaab764b0043e185b2f1ab5a82e 100644 (file)
@@ -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);
 }
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
 {