From 168a414037c8829be4397937a72ff9f8af3f3d1c Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Fri, 12 Feb 2021 08:46:01 +0100 Subject: [PATCH] BUILD: proxy: add missing compression-t.h to proxy-t.h struct comp is used in struct proxy but never declared prior to this so depending on where proxy.h is included, touching the field can break the build. --- include/haproxy/proxy-t.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/haproxy/proxy-t.h b/include/haproxy/proxy-t.h index bafe9402df..247028460a 100644 --- a/include/haproxy/proxy-t.h +++ b/include/haproxy/proxy-t.h @@ -33,6 +33,7 @@ #include #include #include +#include #include #include #include -- 2.47.3