]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorSource Maintenance <squidadm@squid-cache.org>
Tue, 31 Jan 2017 00:12:18 +0000 (00:12 +0000)
committerSource Maintenance <squidadm@squid-cache.org>
Tue, 31 Jan 2017 00:12:18 +0000 (00:12 +0000)
src/Notes.cc
src/Notes.h
src/acl/AnnotateClient.cc
src/acl/AnnotateClient.h
src/acl/AnnotateTransaction.cc
src/acl/AnnotateTransaction.h
src/acl/AnnotationData.cc
src/acl/AnnotationData.h
src/client_side_request.cc

index d30e5977c9c123dbef6c701fb7119164f75de6b7..d424489b4bb67645ae8b8bde007ff79818c84b7e 100644 (file)
@@ -192,7 +192,7 @@ Notes::parseKvPair() {
             assert(method == Note::Value::mhReplace);
             if (Note::Pointer oldNote = find(SBuf(k, keyLen)))
                 debugs(28, DBG_CRITICAL, "Warning: annotation configuration with key " << k <<
-                        " already exists and will be overwritten");
+                       " already exists and will be overwritten");
         }
         SBuf key(k, keyLen);
         validateKey(key);
index 2e5908e5c6c0862bbbece56cee4c3f454fd56c18..a24981cc78a617467695663c5c1dbe0229ad47e0 100644 (file)
@@ -80,7 +80,7 @@ public:
     /// Adds a value to the note and returns a pointer to the
     /// related Value object.
     Value::Pointer addValue(const char *value, const bool quoted, const char *descr,
-            const Value::Method m = Value::mhAppend);
+                            const Value::Method m = Value::mhAppend);
 
     /// Walks through the  possible values list of the note, selects
     /// the first value, matching the given HttpRequest and HttpReply
@@ -140,7 +140,7 @@ public:
     /// entries separated by sep string.
     const char *toString(const char *sep = "\r\n") const;
     void updateNotePairs(NotePairsPointer pairs, const CharacterSet *delimiters,
-            const AccessLogEntryPointer &al);
+                         const AccessLogEntryPointer &al);
 private:
 
     /// Verifies that the key is not blacklisted (fatal error) and
index 2360486093879d6a359cceb5605c2cfcb0e8e349..3aa16ad0337c7a5ef57f60eb178fe7fea1c306f1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1996-2016 The Squid Software Foundation and contributors
+ * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
  *
  * Squid software is distributed under GPLv2+ license and includes
  * contributions from numerous individuals and organizations.
index 45fd6668a1210f0ba5d04a187eba1568274199f4..bb63ca3cb115c3906b9ced5cedb9b0a9d9761356 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1996-2016 The Squid Software Foundation and contributors
+ * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
  *
  * Squid software is distributed under GPLv2+ license and includes
  * contributions from numerous individuals and organizations.
index e3709585d40a8fa2a2e5b292d57b135dc6950802..ff758c99187d19e609a397e7728c5187cc248b25 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1996-2016 The Squid Software Foundation and contributors
+ * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
  *
  * Squid software is distributed under GPLv2+ license and includes
  * contributions from numerous individuals and organizations.
index cb9188148effc01ef377b7c0290beda74349d7e0..441db54b4201fbb01c435fceb4f0629571b89976 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1996-2016 The Squid Software Foundation and contributors
+ * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
  *
  * Squid software is distributed under GPLv2+ license and includes
  * contributions from numerous individuals and organizations.
index 062afcd130702cd6b3770fd2fba2bfbd1663520e..ac0a28b618a06045c83dbe0dc6da2f984be93fbd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1996-2016 The Squid Software Foundation and contributors
+ * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
  *
  * Squid software is distributed under GPLv2+ license and includes
  * contributions from numerous individuals and organizations.
index 9c15ab3817079d754124eafe329c199789704ba2..e38f01d67c28709b6e728434c7675268b7360b86 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1996-2016 The Squid Software Foundation and contributors
+ * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
  *
  * Squid software is distributed under GPLv2+ license and includes
  * contributions from numerous individuals and organizations.
index b05e1c2e96363c5a143d45f364a98f6b2826b142..dbb79422fa127f996ac6128b88947997ac364c56 100644 (file)
@@ -1686,7 +1686,7 @@ ClientHttpRequest::doCallouts()
         // Make the previously set client connection ID available as annotation.
         if (ConnStateData *csd = calloutContext->http->getConn()) {
             if (!csd->notes()->empty())
-               calloutContext->http->request->notes()->appendNewOnly(csd->notes().getRaw());
+                calloutContext->http->request->notes()->appendNewOnly(csd->notes().getRaw());
         }
         ale->syncNotes(calloutContext->http->request);
     }