summaryrefslogtreecommitdiff
path: root/lib/stream-ssl.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stream-ssl.c')
-rw-r--r--lib/stream-ssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stream-ssl.c b/lib/stream-ssl.c
index 13803014b..aa513c12e 100644
--- a/lib/stream-ssl.c
+++ b/lib/stream-ssl.c
@@ -448,7 +448,7 @@ get_peer_common_name(const struct ssl_stream *sslv)
}
const char *cn;
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined (LIBRESSL_VERSION_NUMBER)
/* ASN1_STRING_data() is deprecated as of OpenSSL version 1.1 */
cn = (const char *)ASN1_STRING_data(cn_data);
#else