commit | ec9a58c709cda996bf71288e5f6047f8f8677995 | [log] [tgz] |
---|---|---|
author | Thierry FOURNIER <tfournier@arpalert.org> | Thu Nov 26 19:33:54 2015 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Tue Dec 22 13:36:01 2015 +0100 |
tree | 1113b95d5f26693adf86a4efae0e3477d4da9634 | |
parent | f085d6309986e7119db36f366877b8b57f275530 [diff] |
BUILD/MINOR: regex: missing header When HAProxy is compiled with pcre, strlen() is used, but <string.h> is not included. This patch must be backported in 1.6
diff --git a/include/common/regex.h b/include/common/regex.h index 30a5e3f..8a1703f 100644 --- a/include/common/regex.h +++ b/include/common/regex.h
@@ -23,6 +23,7 @@ #define _COMMON_REGEX_H #include <stdlib.h> +#include <string.h> #include <common/config.h>