From f746013f5e1e619f6442fa47f7bc803fd52b79e9 Mon Sep 17 00:00:00 2001 From: Quirin Gylstorff Date: Tue, 28 Oct 2025 09:23:25 +0100 Subject: [PATCH] Fix implicit declaration of FILES_check_icv MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was found during building for Debian 13(trixie). /build/reproducible-path/libgencmp-2.0/src/credential_loading.c: In function ‘STORE_load_more_check_ex’: /build/reproducible-path/libgencmp-2.0/src/credential_loading.c:902:12: error: implicit declaration of function ‘FILES_check_icv’ [-Wimplicit-function-declaration] 902 | || FILES_check_icv(ctx, file) | ^~~~~~~~~~~~~~~ At top level: --- src/credential_loading.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/credential_loading.c b/src/credential_loading.c index 7241b05b..7087d685 100644 --- a/src/credential_loading.c +++ b/src/credential_loading.c @@ -23,6 +23,7 @@ #include /* for CONN_IS_HTTP[S] */ #include /* for CONN_load_crl_http */ #include +#include #include /* for CRLs_free() */ #include "credential_loading.h"