summaryrefslogtreecommitdiffstats
path: root/ssl/t1_trce.c
diff options
context:
space:
mode:
authorKurt Roeckx <kurt@roeckx.be>2014-11-30 15:35:22 +0100
committerKurt Roeckx <kurt@roeckx.be>2014-12-04 11:55:03 +0100
commit45f55f6a5bdcec411ef08a6f8aae41d5d3d234ad (patch)
tree56dba3e74061df914c5d4fa2faf89e7a24c6457c /ssl/t1_trce.c
parent616f71e486d693991b594439c884ec624b32c2d4 (diff)
Remove SSLv2 support
The only support for SSLv2 left is receiving a SSLv2 compatible client hello. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ssl/t1_trce.c')
-rw-r--r--ssl/t1_trce.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/ssl/t1_trce.c b/ssl/t1_trce.c
index 0799a7af51..36733c64df 100644
--- a/ssl/t1_trce.c
+++ b/ssl/t1_trce.c
@@ -106,7 +106,6 @@ static int do_ssl_trace_list(BIO *bio, int indent,
/* Version number */
static ssl_trace_tbl ssl_version_tbl[] = {
- {SSL2_VERSION, "SSL 2.0"},
{SSL3_VERSION, "SSL 3.0"},
{TLS1_VERSION, "TLS 1.0"},
{TLS1_1_VERSION, "TLS 1.1"},
@@ -1252,8 +1251,6 @@ static int ssl_print_heartbeat(BIO *bio, int indent,
const char *SSL_CIPHER_standard_name(const SSL_CIPHER *c)
{
- if (c->algorithm_ssl & SSL_SSLV2)
- return NULL;
return ssl_trace_str(c->id & 0xFFFF, ssl_ciphers_tbl);
}