From: Willy Tarreau Date: Tue, 19 Apr 2022 06:23:30 +0000 (+0200) Subject: BUILD: calltrace: fix wrong include when building with TRACE=1 X-Git-Tag: v2.6-dev7~40 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=43041aaefd5d42092021161539c861894fbcfdc1;p=thirdparty%2Fhaproxy.git BUILD: calltrace: fix wrong include when building with TRACE=1 calltrace wasn't updated after the move of "now" from time.h to clock.h. This must be backported to 2.5 where the breakage happened. --- diff --git a/src/calltrace.c b/src/calltrace.c index 551e8a01fe..f72e12116e 100644 --- a/src/calltrace.c +++ b/src/calltrace.c @@ -48,7 +48,7 @@ #include #include #include -#include +#include #include static FILE *log;