From 9661b11263564e647741b098a4b01565cc856be3 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Fri, 15 Dec 2017 19:30:22 -0500 Subject: [PATCH] Fix TLS on macOS. --- cups/tls-darwin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cups/tls-darwin.c b/cups/tls-darwin.c index 89ac8c206..9fb3b1611 100644 --- a/cups/tls-darwin.c +++ b/cups/tls-darwin.c @@ -1222,8 +1222,8 @@ _httpTLSStart(http_t *http) /* I - HTTP connection */ kTLSProtocol1, kTLSProtocol11, kTLSProtocol12, - kTLSProtocol13, - kTLSProtocolMaxSupported + kTLSProtocol12, /* TODO: update to 1.3 when 1.3 is supported */ + kTLSProtocol12 /* TODO: update to 1.3 when 1.3 is supported */ }; error = SSLSetProtocolVersionMin(http->tls, protocols[tls_min_version]); -- 2.39.5