aboutsummaryrefslogtreecommitdiff
path: root/mail/postfix
diff options
context:
space:
mode:
authorBernard Spil <brnrd@FreeBSD.org>2016-08-30 05:54:01 +0000
committerBernard Spil <brnrd@FreeBSD.org>2016-08-30 05:54:01 +0000
commit04948a63a8c9240ff8c7c4a091369b52c8dd916e (patch)
tree94eac378287cd37a85c4b852015771e5a5745f3f /mail/postfix
parent397b081664b34467cbe43ce8f95e65fc26e6ba19 (diff)
downloadports-04948a63a8c9240ff8c7c4a091369b52c8dd916e.tar.gz
ports-04948a63a8c9240ff8c7c4a091369b52c8dd916e.zip
mail/postfix: Fix typo in LibreSSL patch
- Fix DANE support with LibreSSL PR: 212223 Reported by: Markus Kohlmeyer <rootservice@gmail.com>
Notes
Notes: svn path=/head/; revision=421102
Diffstat (limited to 'mail/postfix')
-rw-r--r--mail/postfix/Makefile2
-rw-r--r--mail/postfix/files/patch-src_tls_tls__dane.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/mail/postfix/Makefile b/mail/postfix/Makefile
index f42507cadbba..dcee966ed461 100644
--- a/mail/postfix/Makefile
+++ b/mail/postfix/Makefile
@@ -4,7 +4,7 @@
PORTNAME= postfix
PORTVERSION= 3.1.2
PORTEPOCH= 1
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= mail ipv6
MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/ \
http://de.postfix.org/ftpmirror/ \
diff --git a/mail/postfix/files/patch-src_tls_tls__dane.c b/mail/postfix/files/patch-src_tls_tls__dane.c
index 00c4a060be5f..494c3598053d 100644
--- a/mail/postfix/files/patch-src_tls_tls__dane.c
+++ b/mail/postfix/files/patch-src_tls_tls__dane.c
@@ -5,7 +5,7 @@
tls_check_version();
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
-+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESS_VERSION_NUMBER)
++#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
SSL_load_error_strings();
SSL_library_init();
#endif