From: Willy Tarreau Date: Sat, 8 May 2021 10:29:51 +0000 (+0200) Subject: BUILD: auth: include missing list.h X-Git-Tag: v2.4-dev19~68 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e8ceea13457babbd33c573447f56f8a27bedb97d;p=thirdparty%2Fhaproxy.git BUILD: auth: include missing list.h list_for_each_entry() requires list.h but used to inherit it by accident through global.h and mworker-t.h. Let's explicitly add it. --- diff --git a/src/auth.c b/src/auth.c index a88e6b2d5c..8c263744da 100644 --- a/src/auth.c +++ b/src/auth.c @@ -29,6 +29,7 @@ #include #include #include +#include #include #include #include