diff options
author | Andreas Schultz <[email protected]> | 2014-05-17 16:57:30 +0200 |
---|---|---|
committer | Andreas Schultz <[email protected]> | 2014-05-28 12:20:08 +0200 |
commit | f96eaf5ff2f31ea69abd3a8116463e7633ce1f95 (patch) | |
tree | 6211a0b0161c575c96f001455db72155ca78d0b3 /lib | |
parent | 9163e290194b8c82ec291d45a9dff79654c754f6 (diff) | |
download | otp-f96eaf5ff2f31ea69abd3a8116463e7633ce1f95.tar.gz otp-f96eaf5ff2f31ea69abd3a8116463e7633ce1f95.tar.bz2 otp-f96eaf5ff2f31ea69abd3a8116463e7633ce1f95.zip |
SSL: fix OpenSSL known renegotiation bug detection
The OpenSSL detection match would actually consider all 1.0.1 versions
as affected when really only 1.0.1 - 1.0.1c are.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssl/test/ssl_to_openssl_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/test/ssl_to_openssl_SUITE.erl b/lib/ssl/test/ssl_to_openssl_SUITE.erl index a7361755e5..d36e441c7a 100644 --- a/lib/ssl/test/ssl_to_openssl_SUITE.erl +++ b/lib/ssl/test/ssl_to_openssl_SUITE.erl @@ -1341,7 +1341,7 @@ check_sane_openssl_renegotaite(Config, Version) when Version == 'tlsv1.1'; {skip, "Known renegotiation bug in OpenSSL"}; "OpenSSL 1.0.1a" ++ _ -> {skip, "Known renegotiation bug in OpenSSL"}; - "OpenSSL 1.0.1" ++ _ -> + "OpenSSL 1.0.1 " ++ _ -> {skip, "Known renegotiation bug in OpenSSL"}; _ -> check_sane_openssl_renegotaite(Config) |