summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mail/courier/files/patch-tcpd__libcouriertls.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/mail/courier/files/patch-tcpd__libcouriertls.c b/mail/courier/files/patch-tcpd__libcouriertls.c
new file mode 100644
index 000000000000..8b09121dbf08
--- /dev/null
+++ b/mail/courier/files/patch-tcpd__libcouriertls.c
@@ -0,0 +1,15 @@
+--- tcpd/libcouriertls.c.orig 2009-11-21 15:07:32.000000000 -0500
++++ tcpd/libcouriertls.c 2015-03-23 18:04:57.776710000 -0400
+@@ -551,8 +551,10 @@
+ if (!protocol || !*protocol)
+ protocol="SSL23";
+
+- ctx=SSL_CTX_new(protocol && strcmp(protocol, "SSL2") == 0
+- ? SSLv2_method():
++ ctx=SSL_CTX_new(
++#ifndef OPENSSL_NO_SSL2
++ protocol && strcmp(protocol, "SSL2") == 0 ? SSLv2_method():
++#endif
+ protocol && strcmp(protocol, "SSL3") == 0 ? SSLv3_method():
+ protocol && strcmp(protocol, "SSL23") == 0 ? SSLv23_method():
+ TLSv1_method());