Commit 20485918 authored by Bill Stoddard's avatar Bill Stoddard
Browse files

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
parent 890cd01d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 = '/';