From: Matt Caswell Date: Wed, 19 Nov 2014 16:02:49 +0000 (+0000) Subject: Fix s_server -ssl2. Previously this reported "Error setting EC curve" X-Git-Tag: OpenSSL_1_0_2-pre-reformat~124 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5891c226d8c156462337c284c900f33a57bf6a84;p=openssl Fix s_server -ssl2. Previously this reported "Error setting EC curve" Reviewed-by: Dr. Stephen Henson (cherry picked from commit 13d568661c14f71b3c6af263e1b60b92be738f57) --- diff --git a/apps/s_server.c b/apps/s_server.c index a2004b065b..dbc4373044 100644 --- a/apps/s_server.c +++ b/apps/s_server.c @@ -1400,7 +1400,10 @@ int MAIN(int argc, char *argv[]) { www=3; } #ifndef OPENSSL_NO_SSL2 else if (strcmp(*argv,"-ssl2") == 0) - { meth=SSLv2_server_method(); } + { + no_ecdhe=1; + meth=SSLv2_server_method(); + } #endif #ifndef OPENSSL_NO_SSL3_METHOD else if (strcmp(*argv,"-ssl3") == 0)