From 0a3889086decb7364642cf0c7849b28a40dadd32 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Wed, 23 Oct 2024 16:45:32 +0200 Subject: [PATCH] botan: Fix include issue that prevented parsing public keys Botan stopped including build.h in ffi.h with 3.4.0, so we have to add this here explicitly to check for the enabled key types. --- src/libstrongswan/plugins/botan/botan_util_keys.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libstrongswan/plugins/botan/botan_util_keys.c b/src/libstrongswan/plugins/botan/botan_util_keys.c index b6f26393a..127d988cb 100644 --- a/src/libstrongswan/plugins/botan/botan_util_keys.c +++ b/src/libstrongswan/plugins/botan/botan_util_keys.c @@ -29,6 +29,8 @@ #include "botan_rsa_public_key.h" #include "botan_rsa_private_key.h" +#include + #include #include