From 84cb2e79755cfc5e11565613c707d4d8316782f0 Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Sun, 19 Jul 2009 02:08:46 +1200 Subject: [PATCH] Fix compile error in non-split-stack builds --- src/dns_internal.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/dns_internal.cc b/src/dns_internal.cc index c5fb5a8dca..c3ca3df877 100644 --- a/src/dns_internal.cc +++ b/src/dns_internal.cc @@ -1410,7 +1410,11 @@ idnsInit(void) #endif if (DnsSocketA >= 0) { port = comm_local_port(DnsSocketA); +#if IPV6_SPECIAL_SPLITSTACK debugs(78, 1, "DNS Socket created at " << addr4 << ", FD " << DnsSocketA); +#else + debugs(78, 1, "DNS Socket created at " << addr << ", FD " << DnsSocketA); +#endif } } -- 2.47.2