Unverified Commit 978574b5 authored by Jay Satiro's avatar Jay Satiro Committed by Daniel Stenberg
Browse files

openssl: Fix setting TLS 1.3 cipher suites

The flag indicating TLS 1.3 cipher support in the OpenSSL backend was
missing.

Bug: https://github.com/curl/curl/pull/2607#issuecomment-417283187
Reported-by: Kamil Dudka

Closes #2926
parent 57d299a4
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -3807,6 +3807,9 @@ const struct Curl_ssl Curl_ssl_openssl = {
  SSLSUPP_CERTINFO |
  SSLSUPP_PINNEDPUBKEY |
  SSLSUPP_SSL_CTX |
#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
  SSLSUPP_TLS13_CIPHERSUITES |
#endif
  SSLSUPP_HTTPS_PROXY,

  sizeof(struct ssl_backend_data),