From 334d78d1c78c28bd8a0cc9ed1247711a9fba860c Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Sat, 4 Oct 2025 11:08:59 +0100 Subject: [PATCH] [Minor] Add missing cryptobox.h include in shingles.h The rspamd_cryptobox_HASHBYTES constant used in rspamd_html_shingle structure requires cryptobox.h to be included. --- src/libutil/shingles.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libutil/shingles.h b/src/libutil/shingles.h index c4ced3ac7d..3d66e97ebb 100644 --- a/src/libutil/shingles.h +++ b/src/libutil/shingles.h @@ -19,6 +19,7 @@ #include "config.h" #include "mem_pool.h" #include "libserver/word.h" +#include "cryptobox.h" #define RSPAMD_SHINGLE_SIZE 32 -- 2.47.3