Commit 02c54f7c authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Fix in ssltest is no-ssl2 configured

(cherry picked from commit cbf9b4ae)
parent 243dac0a
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -782,7 +782,13 @@ bad:
		meth=SSLv23_method();
#else
#ifdef OPENSSL_NO_SSL2
	if (tls1)
		meth=TLSv1_method();
	else
	if (ssl3)
		meth=SSLv3_method();
	else
		meth=SSLv23_method();
#else
	meth=SSLv2_method();
#endif