From f6f6831f351534083e813c4c314daf3774fbcab7 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Thu, 10 Apr 2025 13:02:39 +0200 Subject: [PATCH] dnsdist: Fix building with OpenSSL providers enabled --- pdns/libssl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/libssl.cc b/pdns/libssl.cc index dd0863a808..8b7b3e5de2 100644 --- a/pdns/libssl.cc +++ b/pdns/libssl.cc @@ -203,7 +203,7 @@ std::pair libssl_load_provider(const std::string& providerNam } #endif /* HAVE_LIBSSL && OPENSSL_VERSION_MAJOR >= 3 && HAVE_TLS_PROVIDERS */ -#if defined(HAVE_LIBSSL) && !HAVE_TLS_PROVIDERS +#if defined(HAVE_LIBSSL) && !defined(HAVE_TLS_PROVIDERS) std::pair libssl_load_engine([[maybe_unused]] const std::string& engineName, [[maybe_unused]] const std::optional& defaultString) { #if defined(OPENSSL_NO_ENGINE) -- 2.47.2