From: Matt Caswell Date: Mon, 22 Aug 2016 09:42:08 +0000 (+0100) Subject: Choose a ciphersuite for testing that won't be affected by "no-*" options X-Git-Tag: OpenSSL_1_1_0~91 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=fe34735c194b9d81dd84e89bbfcfc67c90aa99b3 Choose a ciphersuite for testing that won't be affected by "no-*" options The previous ciphersuite broke in no-ec builds. Reviewed-by: Richard Levitte --- diff --git a/test/dtlstest.c b/test/dtlstest.c index 4d497af1af..fd6e2ab771 100644 --- a/test/dtlstest.c +++ b/test/dtlstest.c @@ -55,7 +55,7 @@ static int test_dtls_unprocessed(int testidx) return 0; } - if (!SSL_CTX_set_cipher_list(cctx, "ECDHE-RSA-AES256-SHA384")) { + if (!SSL_CTX_set_cipher_list(cctx, "AES128-SHA")) { printf("Failed setting cipher list\n"); }