aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl/test/ssl_to_openssl_SUITE.erl
diff options
context:
space:
mode:
authorAndreas Schultz <[email protected]>2014-05-17 16:57:30 +0200
committerAndreas Schultz <[email protected]>2014-05-28 12:20:08 +0200
commitf96eaf5ff2f31ea69abd3a8116463e7633ce1f95 (patch)
tree6211a0b0161c575c96f001455db72155ca78d0b3 /lib/ssl/test/ssl_to_openssl_SUITE.erl
parent9163e290194b8c82ec291d45a9dff79654c754f6 (diff)
downloadotp-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/ssl/test/ssl_to_openssl_SUITE.erl')
-rw-r--r--lib/ssl/test/ssl_to_openssl_SUITE.erl2
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)