From: Fabian Keil <fk@fabiankeil.de>
Date: Sat, 12 Dec 2020 22:18:31 +0000 (+0100)
Subject: Add (optional) parens in an if condition in chat()
X-Git-Tag: v_3_0_30~270^2~29
X-Git-Url: http://www.privoxy.org/gitweb/%22https:/faq/developer-manual/man-page/static/gitweb.js?a=commitdiff_plain;h=8e81a77608af00949306550c4b2c43747d954ddf;p=privoxy.git

Add (optional) parens in an if condition in chat()
---

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;
    }