From: Wouter Wijngaards Date: Thu, 31 Jan 2019 12:33:28 +0000 (+0000) Subject: - Fix OpenSSL without ENGINE support compilation. X-Git-Tag: release-1.9.1rc1~32 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b34a6defc11224202b15c0de611d8be4290ae631;p=thirdparty%2Funbound.git - Fix OpenSSL without ENGINE support compilation. git-svn-id: file:///svn/unbound/trunk@5096 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/daemon/daemon.c b/daemon/daemon.c index e95c17bba..7461a26e2 100644 --- a/daemon/daemon.c +++ b/daemon/daemon.c @@ -770,7 +770,7 @@ daemon_delete(struct daemon* daemon) # endif # ifdef HAVE_OPENSSL_CONFIG EVP_cleanup(); -# if (OPENSSL_VERSION_NUMBER < 0x10100000) || !defined(OPENSSL_NO_ENGINE) +# if (OPENSSL_VERSION_NUMBER < 0x10100000) && !defined(OPENSSL_NO_ENGINE) ENGINE_cleanup(); # endif CONF_modules_free();