From 9dd20c0030f6e1bef79a8ae76625fa4959598fbb Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Thu, 6 Jan 2000 19:16:07 +0000 Subject: [PATCH] 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 --- modules/http/http_request.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.1