From 6e0aa492fff31c5391048452d8f19af82eb77b0f Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Sat, 22 Feb 2020 17:28:31 +0100 Subject: [PATCH] Unbreak the build without FEATURE_HTTPS_FILTERING --- jcc.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/jcc.c b/jcc.c index 591edd71..20337fb8 100644 --- a/jcc.c +++ b/jcc.c @@ -3616,7 +3616,11 @@ static void chat(struct client_state *csp) * haven't setup the TLS context yet and will send the crunch * response later. */ - if (!client_use_ssl(csp) && crunch_response_triggered(csp, crunchers_all)) + if ( +#ifdef FEATURE_HTTPS_FILTERING + !client_use_ssl(csp) && +#endif + crunch_response_triggered(csp, crunchers_all)) { /* * Yes. The client got the crunch response and we're done here. -- 2.39.2