commit | 3d6ee407e7bc2e27faea7c0d6828190f0d201852 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Sat May 08 20:28:07 2021 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Sat May 08 20:35:39 2021 +0200 |
tree | 9aef98a7a137d4658a172bfe2e96ca9d6317ec49 | |
parent | 32840b77a5e05d929f1218ffd88746c482a2ca10 [diff] |
BUILD: hlua: include proxy.h from hlua.c Many proxy functions are called there but the include was missing and inherited via cfgparse.h.
diff --git a/src/hlua.c b/src/hlua.c index 328423b..0c0895e 100644 --- a/src/hlua.c +++ b/src/hlua.c
@@ -45,7 +45,7 @@ #include <haproxy/obj_type.h> #include <haproxy/pattern.h> #include <haproxy/payload.h> -#include <haproxy/proxy-t.h> +#include <haproxy/proxy.h> #include <haproxy/regex.h> #include <haproxy/sample.h> #include <haproxy/server.h>