From 4f3815deb968e36a58ef15b3c9ec6290287b8419 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Mon, 17 Mar 2025 17:52:25 +0800 Subject: [PATCH] crypto: remove unused include openssl_crypto_accel.cc does not need the declarations included by openssl/engine.h, also, openssl/engine.h was deprecated in favor of the provider API, the engine support was removed in fedora 41. so, let's avoid including it. please note, the "ENGINE" struct's definition is available in openssl/types.h. Signed-off-by: Kefu Chai --- src/crypto/openssl/openssl_crypto_accel.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/crypto/openssl/openssl_crypto_accel.cc b/src/crypto/openssl/openssl_crypto_accel.cc index f99844a3848b4..4944205dd3ffb 100644 --- a/src/crypto/openssl/openssl_crypto_accel.cc +++ b/src/crypto/openssl/openssl_crypto_accel.cc @@ -14,7 +14,6 @@ #include "crypto/openssl/openssl_crypto_accel.h" #include -#include #include "common/debug.h" // ----------------------------------------------------------------------------- -- 2.39.5