From: Christophe Jaillet Date: Thu, 9 Jan 2014 18:45:34 +0000 (+0000) Subject: Add missing break. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e1c691b052961364b8eb31ae9032751feb30e26b;p=thirdparty%2Fapache%2Fhttpd.git Add missing break. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1556912 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index 9279cc81afc..8b3edda6568 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -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) {