2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

add more LIBRESSL_VERSION_NUMBER checks

This commit is contained in:
Mark Andrews
2016-11-01 12:24:22 +11:00
parent f53fc4540a
commit 3d38cfaf8a
6 changed files with 6 additions and 8 deletions

View File

@@ -279,7 +279,7 @@ dst__openssl_init(const char *engine) {
void
dst__openssl_destroy(void) {
#if OPENSSL_VERSION_NUMBER >= 0x10100000L
#if !defined(LIBRESSL_VERSION_NUMBER) && (OPENSSL_VERSION_NUMBER >= 0x10100000L)
OPENSSL_cleanup();
if (rm != NULL) {
mem_free(rm FILELINE);