From: Michael R Sweet Date: Wed, 10 Aug 2022 14:47:46 +0000 (-0400) Subject: Don't enable TLS 1.3 with OpenSSL yet. X-Git-Tag: v2.4.3~153 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0549fe04745043b07659d8110f5b16dd2c215d27;p=thirdparty%2Fcups.git Don't enable TLS 1.3 with OpenSSL yet. --- diff --git a/cups/tls-openssl.c b/cups/tls-openssl.c index 6db9f8a9c2..ceb3abaedc 100644 --- a/cups/tls-openssl.c +++ b/cups/tls-openssl.c @@ -917,13 +917,13 @@ _httpTLSStart(http_t *http) // I - Connection to server TLS1_VERSION, // TLS/1.0 TLS1_1_VERSION, // TLS/1.1 TLS1_2_VERSION, // TLS/1.2 -#ifdef TLS1_3_VERSION - TLS1_3_VERSION, // TLS/1.3 - TLS1_3_VERSION // TLS/1.3 (max) -#else +//#ifdef TLS1_3_VERSION +// TLS1_3_VERSION, // TLS/1.3 +// TLS1_3_VERSION // TLS/1.3 (max) +//#else TLS1_2_VERSION, // TLS/1.2 TLS1_2_VERSION // TLS/1.2 (max) -#endif // TLS1_3_VERSION +//#endif // TLS1_3_VERSION };