You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2013/10/17 14:53:53 UTC

svn commit: r1533065 - /httpd/httpd/trunk/modules/proxy/mod_proxy.c

Author: jim
Date: Thu Oct 17 12:53:53 2013
New Revision: 1533065

URL: http://svn.apache.org/r1533065
Log:
Eclipse code analysis warning

Modified:
    httpd/httpd/trunk/modules/proxy/mod_proxy.c

Modified: httpd/httpd/trunk/modules/proxy/mod_proxy.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy.c?rev=1533065&r1=1533064&r2=1533065&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/mod_proxy.c (original)
+++ httpd/httpd/trunk/modules/proxy/mod_proxy.c Thu Oct 17 12:53:53 2013
@@ -2439,7 +2439,7 @@ static int proxy_status_hook(request_rec
     proxy_balancer *balancer = NULL;
     proxy_worker **worker = NULL;
 
-    if (flags & AP_STATUS_SHORT || conf->balancers->nelts == 0 ||
+    if ((flags & AP_STATUS_SHORT) || conf->balancers->nelts == 0 ||
         conf->proxy_status == status_off)
         return OK;