aboutsummaryrefslogtreecommitdiffstats
path: root/ssl/ssl_ciph.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2015-11-13 12:52:51 +0000
committerDr. Stephen Henson <steve@openssl.org>2015-11-14 00:06:32 +0000
commit5e3d21fef150f020e2d33439401da8f7e311aa24 (patch)
tree9bc0e83b9026f42e3543cf925572384844b1c620 /ssl/ssl_ciph.c
parentcfb4f1efbae561e7b70bf97fc8973b2aa084cb14 (diff)
downloadopenssl-5e3d21fef150f020e2d33439401da8f7e311aa24.tar.gz
Use SSL_TLSV1 only if at least TLS v1.0 is needed.
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'ssl/ssl_ciph.c')
-rw-r--r--ssl/ssl_ciph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/ssl_ciph.c b/ssl/ssl_ciph.c
index 0cecd929a3..5d0ec23607 100644
--- a/ssl/ssl_ciph.c
+++ b/ssl/ssl_ciph.c
@@ -389,7 +389,7 @@ static const SSL_CIPHER cipher_aliases[] = {
/* protocol version aliases */
{0, SSL_TXT_SSLV3, 0, 0, 0, 0, 0, SSL_SSLV3, 0, 0, 0, 0},
- {0, SSL_TXT_TLSV1, 0, 0, 0, 0, 0, SSL_TLSV1, 0, 0, 0, 0},
+ {0, SSL_TXT_TLSV1, 0, 0, 0, 0, 0, SSL_SSLV3, 0, 0, 0, 0},
{0, SSL_TXT_TLSV1_2, 0, 0, 0, 0, 0, SSL_TLSV1_2, 0, 0, 0, 0},
/* export flag */