From 2ff91fd0b4c91d394ad654277fcf0a5f5c7df31e Mon Sep 17 00:00:00 2001 From: Bill Stoddard Date: Wed, 31 Jan 2001 20:01:16 +0000 Subject: [PATCH] apr_stat() in http_request.c only needs size, type, mtime, ctime & atime values from the file. Modify apr_stat() under windows to accomodate apr_stat( APR_FINFO_MIN) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87931 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 ef83646be6..d47f6274c4 100644 --- a/modules/http/http_request.c +++ b/modules/http/http_request.c @@ -282,7 +282,7 @@ static int get_path_info(request_rec *r) * an APR_PATHINCOMPLETE result to indicate that we are staring at * an partial virtual root. Only OS2/Win32/Netware need apply it :-) */ - rv = apr_stat(&r->finfo, path, APR_FINFO_NORM, r->pool); + rv = apr_stat(&r->finfo, path, APR_FINFO_MIN, r->pool); if (cp != end) *cp = '/'; -- 2.40.0