24 lines
602 B
Plaintext
24 lines
602 B
Plaintext
$OpenBSD: patch-src_myssl_openssl_c,v 1.2 2015/07/18 15:33:51 sthen Exp $
|
|
|
|
Allow building against OpenSSL without SSLv2/v3 support.
|
|
|
|
--- src/myssl_openssl.c.orig Mon Aug 15 02:59:30 2005
|
|
+++ src/myssl_openssl.c Sat Jul 18 09:33:24 2015
|
|
@@ -543,12 +543,16 @@ bufio *my_ssl_do_connect(doc * docp, bufio * socket,
|
|
|
|
switch (cfg.ssl_version)
|
|
{
|
|
+#ifndef OPENSSL_NO_SSL2
|
|
case 2:
|
|
method = SSLv2_client_method();
|
|
break;
|
|
+#endif
|
|
+#ifndef OPENSSL_NO_SSL3
|
|
case 3:
|
|
method = SSLv3_client_method();
|
|
break;
|
|
+#endif
|
|
#ifdef WITH_SSL_TLS1
|
|
case 4:
|
|
method = TLSv1_client_method();
|