diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2015-11-13 13:52:51 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2015-11-14 01:06:32 +0100 |
commit | 5e3d21fef150f020e2d33439401da8f7e311aa24 (patch) | |
tree | 9bc0e83b9026f42e3543cf925572384844b1c620 /ssl/ssl_ciph.c | |
parent | RT2667: Add IRC support to -starttls (diff) | |
download | openssl-5e3d21fef150f020e2d33439401da8f7e311aa24.tar.xz openssl-5e3d21fef150f020e2d33439401da8f7e311aa24.zip |
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.c | 2 |
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 */ |