You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2014/01/09 19:45:34 UTC

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

Author: jailletc36
Date: Thu Jan  9 18:45:34 2014
New Revision: 1556912

URL: http://svn.apache.org/r1556912
Log:
Add missing break.

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=1556912&r1=1556911&r2=1556912&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/mod_proxy.c (original)
+++ httpd/httpd/trunk/modules/proxy/mod_proxy.c Thu Jan  9 18:45:34 2014
@@ -1726,6 +1726,7 @@ static const char *
     for (i = 0; i < conf->noproxies->nelts; i++) {
         if (strcasecmp(arg, list[i].name) == 0) { /* ignore case for host names */
             found = 1;
+            break;
         }
     }
 
@@ -1761,6 +1762,7 @@ static const char *
     for (i = 0; i < conf->dirconn->nelts; i++) {
         if (strcasecmp(arg, list[i].name) == 0)
             found = 1;
+            break;
     }
 
     if (!found) {