From 53a2dfcb1ffa28f922fe359c8b825dcd28b21c3c Mon Sep 17 00:00:00 2001 From: David Benjamin Date: Fri, 7 Oct 2016 21:04:12 -0400 Subject: [PATCH] Remove incorrect ciphers check. This was a remnant of the old cipher suite setup. Change-Id: Ibc79b81200a52d45fbd69b9c04060c38ad4707f5 Reviewed-on: https://boringssl-review.googlesource.com/11564 Reviewed-by: David Benjamin --- ssl/t1_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c index 02c713ba..7031145f 100644 --- a/ssl/t1_lib.c +++ b/ssl/t1_lib.c @@ -2018,7 +2018,7 @@ static int ext_key_share_add_clienthello(SSL *ssl, CBB *out) { return 0; } - if (max_version < TLS1_3_VERSION || !ssl_any_ec_cipher_suites_enabled(ssl)) { + if (max_version < TLS1_3_VERSION) { return 1; }