From 7a0169a41a81d82b2b6ab08a3b88d3d07b617186 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Mon, 19 Nov 2012 17:13:16 +0100 Subject: [PATCH] BUILD: cli: fix build when SSL is enabled Commit bc174aa forgot to include proto/ssl_sock.h. --- src/dumpstats.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/dumpstats.c b/src/dumpstats.c index cd00e5b77..35d75c088 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);