From e8ceea13457babbd33c573447f56f8a27bedb97d Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Sat, 8 May 2021 12:29:51 +0200 Subject: [PATCH] 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. --- src/auth.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/auth.c b/src/auth.c index a88e6b2d5..8c263744d 100644 --- a/src/auth.c +++ b/src/auth.c @@ -29,6 +29,7 @@ #include #include #include +#include #include #include #include