From: Joe Orton Date: Fri, 6 Nov 2009 22:51:42 +0000 (+0000) Subject: * modules/ssl/ssl_engine_kernel.c (ssl_callback_Info): Add parentheses X-Git-Tag: 2.3.3~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=718a24dd4523c003d1698c7c2ba3ec81850dd7ee;p=apache * modules/ssl/ssl_engine_kernel.c (ssl_callback_Info): Add parentheses around bitwise-and. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@833593 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_engine_kernel.c b/modules/ssl/ssl_engine_kernel.c index fb77ac6047..52bc0a8f54 100644 --- a/modules/ssl/ssl_engine_kernel.c +++ b/modules/ssl/ssl_engine_kernel.c @@ -1924,7 +1924,7 @@ void ssl_callback_Info(MODSSL_INFO_CB_ARG_TYPE ssl, int where, int rc) } /* If the first handshake is complete, change state to reject any * subsequent client-initated renegotiation. */ - else if (where & SSL_CB_HANDSHAKE_DONE && scr->reneg_state == RENEG_INIT) { + else if ((where & SSL_CB_HANDSHAKE_DONE) && scr->reneg_state == RENEG_INIT) { scr->reneg_state = RENEG_REJECT; }