commit | e8ceea13457babbd33c573447f56f8a27bedb97d | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Sat May 08 12:29:51 2021 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Sat May 08 12:29:51 2021 +0200 |
tree | e0ca6a410594372521c3fccc92ff10e5f104e7e4 | |
parent | 7f673c2cde562288d6acc22312f7bea1f263a191 [diff] |
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 a88e6b2..8c26374 100644 --- a/src/auth.c +++ b/src/auth.c
@@ -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>