From: Christophe Jaillet Date: Thu, 9 Jan 2014 20:19:51 +0000 (+0000) Subject: Oops (fix r1556912) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73b72ec5c073e6226a6b1cedeae36b4ac8c32fa3;p=thirdparty%2Fapache%2Fhttpd.git Oops (fix r1556912) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1556937 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index 8b3edda6568..089135730f8 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -1760,9 +1760,10 @@ static const char * /* Don't duplicate entries */ for (i = 0; i < conf->dirconn->nelts; i++) { - if (strcasecmp(arg, list[i].name) == 0) + if (strcasecmp(arg, list[i].name) == 0) { found = 1; break; + } } if (!found) {