mirror of
https://git.freebsd.org/ports.git
synced 2025-06-24 06:00:30 -04:00
- Fix DANE support with LibreSSL PR: 212223 Reported by: Markus Kohlmeyer <rootservice@gmail.com>
11 lines
373 B
C
11 lines
373 B
C
--- src/tls/tls_dane.c.orig 2016-08-27 20:27:50 UTC
|
|
+++ src/tls/tls_dane.c
|
|
@@ -2163,7 +2163,7 @@ static SSL_CTX *ctx_init(const char *CAf
|
|
tls_param_init();
|
|
tls_check_version();
|
|
|
|
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
|
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
|
|
SSL_load_error_strings();
|
|
SSL_library_init();
|
|
#endif
|