From: Willy Tarreau Date: Thu, 22 Nov 2018 10:45:04 +0000 (+0100) Subject: MINOR: cli: add a few missing includes in proto/cli.h X-Git-Tag: v1.9-dev8~25 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=17306b905ea51a81a856d829242cce6052e06596;p=thirdparty%2Fhaproxy.git MINOR: cli: add a few missing includes in proto/cli.h Just found that proto/cli.h doesn't build if types/cli.h is not also included by the caller, as it uses cli_kw_list is used in arguments. But it's also true for a few other ones like mworker_proc, stream, and channel, so let's fix this. --- diff --git a/include/proto/cli.h b/include/proto/cli.h index c41c8bf9aa..b4cac0d10c 100644 --- a/include/proto/cli.h +++ b/include/proto/cli.h @@ -23,6 +23,12 @@ #ifndef _PROTO_CLI_H #define _PROTO_CLI_H +#include +#include +#include +#include +#include + void cli_register_kw(struct cli_kw_list *kw_list);