From: Amos Jeffries Date: Thu, 19 Nov 2015 00:24:50 +0000 (-0800) Subject: Fix build after rev.14402 https_port currently still requires OpenSSL X-Git-Tag: SQUID_4_0_3~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=188c0e313642b76f84a72dbf872cb6412541ca0a;p=thirdparty%2Fsquid.git Fix build after rev.14402 https_port currently still requires OpenSSL --- diff --git a/src/client_side.cc b/src/client_side.cc index 6972eac4bc..7498ab4f38 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -4290,12 +4290,12 @@ clientHttpConnectionsOpen(void) Ssl::TheGlobalContextStorage.addLocalStorage(s->s, sz); } } -#endif if (s->secure.encryptTransport && !s->staticSslContext) { debugs(1, DBG_CRITICAL, "ERROR: Ignoring " << scheme << "_port " << s->s << " due to TLS context initialization failure."); continue; } +#endif // Fill out a Comm::Connection which IPC will open as a listener for us // then pass back when active so we can start a TcpAcceptor subscription.