From 418293dacd8c2d20ffb7fe39acb098f23a69cfbe Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Tue, 21 Feb 2017 02:10:21 +1300 Subject: [PATCH] Enable https:// URL outgoing support with GnuTLS --- src/url.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/url.cc b/src/url.cc index 56c7854e55..08e1e1bd32 100644 --- a/src/url.cc +++ b/src/url.cc @@ -832,6 +832,8 @@ urlCheckRequest(const HttpRequest * r) case AnyP::PROTO_HTTPS: #if USE_OPENSSL rc = 1; +#elif USE_GNUTLS + rc = 1; #else /* * Squid can't originate an SSL connection, so it should -- 2.47.3