From: Willy Tarreau Date: Sat, 8 May 2021 11:07:31 +0000 (+0200) Subject: BUILD: connection: include tools.h in connection.c X-Git-Tag: v2.4-dev19~54 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=908908ef2aee6f220bf25113f636c16f16d998ad;p=thirdparty%2Fhaproxy.git BUILD: connection: include tools.h in connection.c Several functions from tools.h are called there without the file being included. --- diff --git a/src/connection.c b/src/connection.c index 67b212452a..3e3fb007f8 100644 --- a/src/connection.c +++ b/src/connection.c @@ -25,6 +25,7 @@ #include #include #include +#include DECLARE_POOL(pool_head_connection, "connection", sizeof(struct connection));