diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-11-09 10:10:25 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-11-09 10:10:25 -0500 |
commit | 1ba1a1ceca4501b673bfc56b15f1063ce35afe4e (patch) | |
tree | 355ff85aa5efa422d4264ee49a7d1a90300a9bd2 /configure.ac | |
parent | 0a824bd88998be66bfd8d55c7200fe3903e19739 (diff) | |
download | tor-1ba1a1ceca4501b673bfc56b15f1063ce35afe4e.tar.gz tor-1ba1a1ceca4501b673bfc56b15f1063ce35afe4e.zip |
Always declare groups when building with openssl 1.1.1 APIs
Failing to do on clients was causing TLS 1.3 negotiation to fail.
Fixes bug 28245; bugfix on 0.2.9.15, when we added TLS 1.3 support.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 772ae432a6..771769422e 100644 --- a/configure.ac +++ b/configure.ac @@ -677,6 +677,7 @@ AC_CHECK_FUNCS([ \ SSL_get_server_random \ SSL_get_client_ciphers \ SSL_get_client_random \ + SSL_CTX_set1_groups_list \ SSL_CIPHER_find \ SSL_CTX_set_security_level \ TLS_method |