From: Amos Jeffries Date: Thu, 27 May 2010 04:07:20 +0000 (+1200) Subject: Remove some excess whitespace X-Git-Tag: SQUID_3_2_0_1~167^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5862d3be7641358b5a46a80fdc12144165ad0b50;p=thirdparty%2Fsquid.git Remove some excess whitespace --- diff --git a/include/RefCount.h b/include/RefCount.h index 87341efaa0..b10ce82c8c 100644 --- a/include/RefCount.h +++ b/include/RefCount.h @@ -37,10 +37,6 @@ #include "config.h" -#if REFCOUNT_DEBUG -#include "Debug.h" -#endif - #if HAVE_IOSTREAM #include #endif diff --git a/src/auth/Scheme.cc b/src/auth/Scheme.cc index b476636c18..5a86b2edb3 100644 --- a/src/auth/Scheme.cc +++ b/src/auth/Scheme.cc @@ -83,7 +83,7 @@ AuthScheme::GetSchemes() void AuthScheme::FreeAll() { -// assert(shutting_down); + assert(shutting_down); while (GetSchemes().size()) { AuthScheme::Pointer scheme = GetSchemes().back(); diff --git a/src/auth/digest/auth_digest.cc b/src/auth/digest/auth_digest.cc index aa0845145f..6cafdfb8ef 100644 --- a/src/auth/digest/auth_digest.cc +++ b/src/auth/digest/auth_digest.cc @@ -509,7 +509,6 @@ AuthDigestConfig::rotateHelpers() /* NP: dynamic helper restart will ensure they start up again as needed. */ } - /** delete the digest request structure. Does NOT delete related structures */ void digestScheme::done() @@ -646,7 +645,6 @@ DigestUser::ttl() const return min(nonce_ttl, global_ttl); } - /* Initialize helpers and the like for this auth scheme. Called AFTER parsing the * config file */ void diff --git a/src/auth/ntlm/auth_ntlm.cc b/src/auth/ntlm/auth_ntlm.cc index 500bcf05d3..d534cd472f 100644 --- a/src/auth/ntlm/auth_ntlm.cc +++ b/src/auth/ntlm/auth_ntlm.cc @@ -281,7 +281,6 @@ NTLMUser::ttl() const return -1; // NTLM credentials cannot be cached. } - static void authenticateNTLMStats(StoreEntry * sentry) { diff --git a/test-suite/Makefile.am b/test-suite/Makefile.am index 00f427974c..513aea4c4f 100644 --- a/test-suite/Makefile.am +++ b/test-suite/Makefile.am @@ -67,7 +67,7 @@ mem_hdr_test_SOURCES = mem_hdr_test.cc $(DEBUG_SOURCE) mem_hdr_test_LDADD = $(top_builddir)/src/stmem.o \ $(top_builddir)/src/mem_node.o $(LDADD) MemPoolTest_SOURCES = MemPoolTest.cc -refcount_SOURCES = refcount.cc $(DEBUG_SOURCE) +refcount_SOURCES = refcount.cc splay_SOURCES = splay.cc