]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUILD: auth: include missing list.h
authorWilly Tarreau <w@1wt.eu>
Sat, 8 May 2021 10:29:51 +0000 (12:29 +0200)
committerWilly Tarreau <w@1wt.eu>
Sat, 8 May 2021 10:29:51 +0000 (12:29 +0200)
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

index a88e6b2d5ca9c688fb72681383aa6e0edee7ad42..8c263744da6beaaf32d2b71ba9b992851f4067d1 100644 (file)
@@ -29,6 +29,7 @@
 #include <haproxy/auth-t.h>
 #include <haproxy/errors.h>
 #include <haproxy/global.h>
+#include <haproxy/list.h>
 #include <haproxy/pattern-t.h>
 #include <haproxy/sample-t.h>
 #include <haproxy/thread.h>