mirror of
https://github.com/apache/httpd.git
synced 2025-08-07 04:02:58 +03:00
Fix a minor bug that would cause us to return FORBIDDEN for all requests.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84399 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -266,7 +266,7 @@ static int get_path_info(request_rec *r)
|
||||
if (cp != end)
|
||||
*cp = '/';
|
||||
|
||||
if (rv != APR_SUCCESS) {
|
||||
if (rv == APR_SUCCESS) {
|
||||
/*
|
||||
* Aha! Found something. If it was a directory, we will search
|
||||
* contents of that directory for a multi_match, so the PATH_INFO
|
||||
|
Reference in New Issue
Block a user