]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Source Format Enforcement (#1439)
authorAlex Rousskov <rousskov@measurement-factory.com>
Fri, 4 Aug 2023 00:55:41 +0000 (00:55 +0000)
committerSquid Anubis <squid-anubis@squid-cache.org>
Fri, 4 Aug 2023 00:55:53 +0000 (00:55 +0000)
This change is a reference point for automated CONTRIBUTORS updates.

CONTRIBUTORS
src/tests/testCacheManager.cc

index 815f0c37ccc918cada3f647e5bcd7f4722a3d36f..82657ce1b6c93781ccc8bda5a6f12a7c057fa048 100644 (file)
@@ -46,6 +46,7 @@ Thank you!
     Andrew Doran <ad@interlude.eu.org>
     Andrew Evdokimov <ae@elahi.ru>
     Andrew Hoying <andrew_hoying@blm.gov>
+    Andrew Novikov <as.asaw@gmail.com>
     Andrew Tridgell
     Andrey <rybakovandrey85@gmail.com>
     Andrey Shorin <tolsty@tushino.com>
index a23aee741956c6cadfc30da1dfc00e3d696f69ab..fcbfffa1f37f4449f2c3f3c79e6bd5a6b050aa14 100644 (file)
@@ -54,7 +54,7 @@ CacheManagerInternals::testValidUrl(const AnyP::Uri &url)
         (void)ParseUrl(url);
     } catch (...) {
         std::cerr << "\nFAIL: " << url <<
-            Debug::Extra << "error: " << CurrentException << "\n";
+                  Debug::Extra << "error: " << CurrentException << "\n";
         CPPUNIT_FAIL("rejected a valid URL");
     }
 }
@@ -65,7 +65,7 @@ CacheManagerInternals::testInvalidUrl(const AnyP::Uri &url, const char *const pr
     try {
         (void)ParseUrl(url);
         std::cerr << "\nFAIL: " << url <<
-            Debug::Extra << "error: should be rejected due to '" << problem << "'\n";
+                  Debug::Extra << "error: should be rejected due to '" << problem << "'\n";
     } catch (const TextException &) {
         return; // success -- the parser signaled bad input
     }