From 7d84439b4859915fd9dcfa9362109c402c867b96 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Fri, 20 Jan 2023 00:02:37 +0100 Subject: [PATCH] BUILD: hpack: include global.h for the trash that is needed in debug mode When building with -DDEBUG_HPACK, the trash is needed, but it's declared in global.h. This may be backported to all supported versions. --- src/hpack-dec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hpack-dec.c b/src/hpack-dec.c index 6e4a8b74a1..147021cc36 100644 --- a/src/hpack-dec.c +++ b/src/hpack-dec.c @@ -32,6 +32,7 @@ #include #include +#include #include #include #include -- 2.39.5