From 8e81a77608af00949306550c4b2c43747d954ddf Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Sat, 12 Dec 2020 23:18:31 +0100 Subject: [PATCH] Add (optional) parens in an if condition in chat() --- jcc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jcc.c b/jcc.c index 875c8a76..ca5943cf 100644 --- a/jcc.c +++ b/jcc.c @@ -3670,7 +3670,7 @@ static void chat(struct client_state *csp) use_ssl_tunnel = 1; } - if (http->ssl && csp->action->flags & ACTION_IGNORE_CERTIFICATE_ERRORS) + if (http->ssl && (csp->action->flags & ACTION_IGNORE_CERTIFICATE_ERRORS)) { csp->dont_verify_certificate = 1; } -- 2.39.2