mirror of
https://github.com/apache/httpd.git
synced 2025-08-07 04:02:58 +03:00
Add missing break.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1556912 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -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) {
|
||||
|
Reference in New Issue
Block a user