From: Ryan Bloom Date: Sat, 18 Nov 2000 05:44:53 +0000 (+0000) Subject: Get Multi-Views working again. It wasn't working because we weren't X-Git-Tag: APACHE_2_0_ALPHA_8~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0955906aea83cd3c546cf5e8bb96600c8579f011;p=thirdparty%2Fapache%2Fhttpd.git Get Multi-Views working again. It wasn't working because we weren't setting the path_info field correctly if we didn't find the specified file. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87004 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_request.c b/modules/http/http_request.c index 800e59f1274..17bdf53838b 100644 --- a/modules/http/http_request.c +++ b/modules/http/http_request.c @@ -311,7 +311,6 @@ static int get_path_info(request_rec *r) "access to %s failed", r->uri); return HTTP_FORBIDDEN; } - last_cp = cp; } return OK; }