diff options
author | Richard Pospesel <richard@torproject.org> | 2023-02-16 13:27:30 +0000 |
---|---|---|
committer | Richard Pospesel <richard@torproject.org> | 2023-02-16 13:27:30 +0000 |
commit | c71f31dccca9f0e82d1f0a6bb17ed1926a6a054a (patch) | |
tree | bec848849685285e12de80fabe5bd45c2cf1ead0 /src/lib | |
parent | 482ce87a8de23bf6d29ec55c1c7b9399dbdfac3b (diff) | |
download | tor-c71f31dccca9f0e82d1f0a6bb17ed1926a6a054a.tar.gz tor-c71f31dccca9f0e82d1f0a6bb17ed1926a6a054a.zip |
Reworded OpenSSL bug 7712 detection warning to avoid OpenSSL 1.1.1b detection false positive.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/tls/tortls_openssl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/tls/tortls_openssl.c b/src/lib/tls/tortls_openssl.c index 77de2d6a11..12260c09d3 100644 --- a/src/lib/tls/tortls_openssl.c +++ b/src/lib/tls/tortls_openssl.c @@ -1734,8 +1734,7 @@ tor_tls_export_key_material,(tor_tls_t *tls, uint8_t *secrets_out, * issue 7712. */ openssl_bug_7712_is_present = 1; log_warn(LD_GENERAL, "Detected OpenSSL bug 7712: disabling TLS 1.3 on " - "future connections. A fix is expected to appear in OpenSSL " - "1.1.1b."); + "future connections."); } } if (openssl_bug_7712_is_present) |