From: Bill Stoddard Date: Wed, 31 Jan 2001 20:01:16 +0000 (+0000) Subject: apr_stat() in http_request.c only needs size, type, mtime, ctime & atime values from X-Git-Tag: APACHE_2_0_BETA_CANDIDATE_1~31 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2ff91fd0b4c91d394ad654277fcf0a5f5c7df31e;p=apache 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 --- 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 = '/';