From: André Malo Date: Fri, 14 Sep 2007 21:52:49 +0000 (+0000) Subject: don't fall through this case. Just break. X-Git-Tag: 2.3.0~1416 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89d41bc442ed06beb81c2066d1e3dadcc3fcd67c;p=thirdparty%2Fapache%2Fhttpd.git don't fall through this case. Just break. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@575802 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index e76b165f572..18b490162af 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -575,6 +575,7 @@ static unsigned is_absolute_uri(char *uri) if (!strncasecmp(uri, "jp://", 5)) { /* ajp:// */ return 6; } + break; case 'b': case 'B':