]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Bootstrap and build test fallout
authorAmos Jeffries <amosjeffries@squid-cache.org>
Tue, 27 May 2008 13:23:13 +0000 (07:23 -0600)
committerAmos Jeffries <amosjeffries@squid-cache.org>
Tue, 27 May 2008 13:23:13 +0000 (07:23 -0600)
src/cache_cf.cc
test-suite/Makefile.in

index 42814a8110bfaadcc2501d23cac560dea8009675..8756b4a9bc890e7af454fdfa83a418dc86747f75 100644 (file)
@@ -2877,16 +2877,16 @@ parse_http_port_option(http_port_list * s, char *token)
     } else if (strcmp(token, "transparent") == 0) {
         s->transparent = 1;
         /* Log information regarding the port modes under interception. */
-        debugs(3, 1, "Starting Authentication on port " << s->s);
-        debugs(3, 1, "Disabling Authentication on port " << s->s << " (interception enabled)");
+        debugs(3, 1, "Starting Authentication on port " << inet_ntoa(s->s.sin_addr) << ":" << s->s.sin_port);
+        debugs(3, 1, "Disabling Authentication on port " << inet_ntoa(s->s.sin_addr) << ":" << s->s.sin_port << " (interception enabled)");
 
 #if LINUX_TPROXY
     } else if (strcmp(token, "tproxy") == 0) {
         s->tproxy = 1;
         need_linux_tproxy = 1;
         /* Log information regarding the port modes under transparency. */
-        debugs(3, 1, "Starting IP Spoofing on port " << s->s);
-        debugs(3, 1, "Disabling Authentication on port " << s->s << " (IP spoofing enabled)");
+        debugs(3, 1, "Starting IP Spoofing on port " << inet_ntoa(s->s.sin_addr) << ":" << s->s.sin_port);
+        debugs(3, 1, "Disabling Authentication on port " << inet_ntoa(s->s.sin_addr) << ":" << s->s.sin_port << " (IP spoofing enabled)");
 #endif
 
     } else {
index 6e10c7a12c095ea682615285ca5c3dc38d1b8cf4..a5c22091c790610966924f54fae7a618089c59de 100644 (file)
@@ -379,6 +379,7 @@ AUTOMAKE_OPTIONS = subdir-objects
 AM_CFLAGS = @SQUID_CFLAGS@
 AM_CXXFLAGS = @SQUID_CXXFLAGS@
 INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/include -I$(top_srcdir)/include -I$(top_srcdir)/src
+EXTRA_DIST = testheaders.sh
 ESI_ALL_TESTS = \
        ESIExpressions