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.
This commit is contained in:
Jerome Magnin 2020-01-17 18:01:20 +01:00 committed by Willy Tarreau
parent 3381bf89e3
commit b8bd6d7efd

View File

@ -12,6 +12,7 @@
#include <ctype.h>
#include <stdio.h>
#include <errno.h>
#include <common/config.h>
#include <common/standard.h>