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
This commit is contained in:
William Lallemand 2020-06-23 20:25:07 +02:00
parent ee8530c65e
commit 82d877dd02

View File

@ -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>