From 908908ef2aee6f220bf25113f636c16f16d998ad Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Sat, 8 May 2021 13:07:31 +0200 Subject: [PATCH] BUILD: connection: include tools.h in connection.c Several functions from tools.h are called there without the file being included. --- src/connection.c | 1 + 1 file changed, 1 insertion(+) 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));