]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorSource Maintenance <squidadm@squid-cache.org>
Tue, 28 Jul 2015 12:12:10 +0000 (12:12 +0000)
committerSource Maintenance <squidadm@squid-cache.org>
Tue, 28 Jul 2015 12:12:10 +0000 (12:12 +0000)
src/auth/digest/Config.cc
src/base/LookupTable.h
src/tests/testLookupTable.cc
src/tests/testLookupTable.h

index 46f2bf1a3b5c272accd4f20bf5279324d1e416fd..4b2d95cebf08976b9ff762a95dfbbc137862a968 100644 (file)
@@ -65,7 +65,7 @@ enum http_digest_attr_type {
 };
 
 static const LookupTable<http_digest_attr_type>::Record
-  DigestAttrs[] = {
+DigestAttrs[] = {
     {"username", DIGEST_USERNAME},
     {"realm", DIGEST_REALM},
     {"qop", DIGEST_QOP},
index e50130ee6fad6b76befcf930cdc7ba6172357171..ac1d33c2d9ca40bcc4c092b83d257b635da195a6 100644 (file)
@@ -60,3 +60,4 @@ private:
 };
 
 #endif /* SQUID_LOOKUPTABLE_H_ */
+
index 268f839451875433691bdfbbc9403cf70b58de17..d97b4cb0415b5465a77140ddd9142f891686ea61 100644 (file)
@@ -25,14 +25,14 @@ enum EnumData {
 };
 
 static const LookupTable<EnumData>::Record tableData[] = {
-                {"one", ENUM_1},
-                {"two", ENUM_2},
-                {"three", ENUM_3},
-                {"four", ENUM_4},
-                {"five", ENUM_5},
-                {"six", ENUM_6},
-                {"seven", ENUM_7},
-                {nullptr, ENUM_INVALID}
+    {"one", ENUM_1},
+    {"two", ENUM_2},
+    {"three", ENUM_3},
+    {"four", ENUM_4},
+    {"five", ENUM_5},
+    {"six", ENUM_6},
+    {"seven", ENUM_7},
+    {nullptr, ENUM_INVALID}
 };
 
 void
@@ -51,3 +51,4 @@ testLookupTable::testLookupTableLookup()
     // element not found
     CPPUNIT_ASSERT_EQUAL(lt.lookup(SBuf("eleventy")), ENUM_INVALID);
 }
+
index 545db6e49d4ac6ab42162c65565b7ca1568a5f8c..22a9f94e9792da53c55cd456c4ce226439a158d7 100644 (file)
@@ -21,3 +21,4 @@ public:
 };
 
 #endif /* SQUID_TESTLOOKUPTABLE_H_ */
+