From: Ryan Bloom Date: Thu, 6 Jan 2000 19:16:07 +0000 (+0000) Subject: Fix a minor bug that would cause us to return FORBIDDEN for all requests. X-Git-Tag: 1.3.10~29 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9dd20c0030f6e1bef79a8ae76625fa4959598fbb;p=apache 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 --- diff --git a/modules/http/http_request.c b/modules/http/http_request.c index 505b5f9558..6965c14499 100644 --- a/modules/http/http_request.c +++ b/modules/http/http_request.c @@ -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