From: Jerome Magnin Date: Fri, 17 Jan 2020 17:01:20 +0000 (+0100) Subject: BUILD: pattern: include errno.h X-Git-Tag: v2.2-dev1~97 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b8bd6d7efd6db5d964eae902e8f3c09a757b12a9;p=thirdparty%2Fhaproxy.git BUILD: pattern: include errno.h Commit 3c79d4bdc introduced the use of errno in pattern.c without including errno.h. If we build haproxy without any option errno is not defined and the build fails. --- diff --git a/src/pattern.c b/src/pattern.c index 33e0e17f27..90067cd234 100644 --- a/src/pattern.c +++ b/src/pattern.c @@ -12,6 +12,7 @@ #include #include +#include #include #include