From: Willy Tarreau Date: Mon, 19 Nov 2012 16:13:16 +0000 (+0100) Subject: BUILD: cli: fix build when SSL is enabled X-Git-Tag: v1.5-dev13~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7a0169a41a81d82b2b6ab08a3b88d3d07b617186;p=thirdparty%2Fhaproxy.git BUILD: cli: fix build when SSL is enabled Commit bc174aa forgot to include proto/ssl_sock.h. --- diff --git a/src/dumpstats.c b/src/dumpstats.c index cd00e5b77f..35d75c0887 100644 --- a/src/dumpstats.c +++ b/src/dumpstats.c @@ -56,6 +56,10 @@ #include #include +#ifdef USE_OPENSSL +#include +#endif + static int stats_dump_raw_to_buffer(struct stream_interface *si); static int stats_dump_full_sess_to_buffer(struct stream_interface *si); static int stats_dump_sess_to_buffer(struct stream_interface *si);