Commit 13d56866 authored by Matt Caswell's avatar Matt Caswell
Browse files

Fix s_server -ssl2. Previously this reported "Error setting EC curve"

parent 764b6a35
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -1408,7 +1408,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)