[Privoxy-commits] [privoxy] 12/12: handle_established_connection(): Add parentheses to clarify an expression

User Git git at git.privoxy.org
Wed Feb 3 10:57:03 UTC 2021


This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository privoxy.

commit 1735db35cf6e78e892535418accc59f23c335881
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Tue Feb 2 12:13:39 2021 +0100

    handle_established_connection(): Add parentheses to clarify an expression
    
    Suggested by: David Binderman
---
 jcc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/jcc.c b/jcc.c
index 8283add6..d82407ca 100644
--- a/jcc.c
+++ b/jcc.c
@@ -3942,8 +3942,8 @@ static void handle_established_connection(struct client_state *csp)
                   if ((ssl_send_data_delayed(&(csp->ssl_client_attr),
                           (const unsigned char *)hdr, strlen(hdr),
                           get_write_delay(csp)) < 0)
-                     || (len = ssl_flush_socket(&(csp->ssl_client_attr),
-                            csp->iob) < 0))
+                     || ((len = ssl_flush_socket(&(csp->ssl_client_attr),
+                            csp->iob)) < 0))
                   {
                      log_error(LOG_LEVEL_CONNECT, "Write header to client failed");
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Privoxy-commits mailing list