From: Matt Caswell Date: Mon, 12 Mar 2018 10:48:32 +0000 (+0000) Subject: Fix clienthellotest for new TLSv1.3 ciphersuite configuration X-Git-Tag: OpenSSL_1_1_1-pre3~96 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=74826901379bf190a9c3b3ceaaca0493454e3536;p=oweals%2Fopenssl.git Fix clienthellotest for new TLSv1.3 ciphersuite configuration A place in clienthellotest was missed in converting to the new mechanism for configuration of TLSv1.3 ciphersuites. Reviewed-by: Tim Hudson (Merged from https://github.com/openssl/openssl/pull/5392) --- diff --git a/test/clienthellotest.c b/test/clienthellotest.c index 45595d393a..5eded83bda 100644 --- a/test/clienthellotest.c +++ b/test/clienthellotest.c @@ -120,7 +120,9 @@ static int test_client_hello(int currtest) * not need padding. */ } else if (!TEST_true(SSL_CTX_set_cipher_list(ctx, - "AES128-SHA:TLS13-AES-128-GCM-SHA256"))) { + "AES128-SHA")) + || !TEST_true(SSL_CTX_set_ciphersuites(ctx, + "TLS_AES_128_GCM_SHA256"))) { goto end; } break;