BUG/MINOR: ssl: fix build with ckch_deinit() and crtlist_deinit()
ee8530c ("MINOR: ssl: free the crtlist and the ckch during the
deinit()") introduced a build problem because it lacks the right
includes in haproxy.c
diff --git a/src/haproxy.c b/src/haproxy.c
index 9e8ffa9..22b4383 100644
--- a/src/haproxy.c
+++ b/src/haproxy.c
@@ -116,6 +116,8 @@
#include <haproxy/server.h>
#include <haproxy/session.h>
#include <haproxy/signal.h>
+#include <haproxy/ssl_ckch.h>
+#include <haproxy/ssl_crtlist.h>
#include <haproxy/ssl_sock.h>
#include <haproxy/stream.h>
#include <haproxy/task.h>