diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2001-01-27 22:28:28 +0100 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2001-01-27 22:28:28 +0100 |
commit | 7f4a5fe7f59fc18f410c090f07c93bd56b4c6eef (patch) | |
tree | 2c09d6fe3e384cd659974eac87cbf8d7b8a67f21 /os | |
parent | BeOS BONE shouldn't be using this BeOS R5 check, so alter the check to make it (diff) | |
download | apache2-7f4a5fe7f59fc18f410c090f07c93bd56b4c6eef.tar.xz apache2-7f4a5fe7f59fc18f410c090f07c93bd56b4c6eef.zip |
Use the appropriate APR_FINFO_flags for the apr_stat/lstat/getfileinfo
calls to avoid ownership and permissions on Win32 when they are not
required, and until they are implemented.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87873 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os')
-rw-r--r-- | os/win32/mod_isapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/win32/mod_isapi.c b/os/win32/mod_isapi.c index b2a551b33a..803b9da139 100644 --- a/os/win32/mod_isapi.c +++ b/os/win32/mod_isapi.c @@ -1239,7 +1239,7 @@ static const char *isapi_cmd_cachefile(cmd_parms *cmd, void *dummy, fspec = ap_os_case_canonical_filename(cmd->pool, filename); if (apr_stat(&tmp, fspec, - APR_FINFO_NORM, cmd->temp_pool) != APR_SUCCESS) { + APR_FINFO_TYPE, cmd->temp_pool) != APR_SUCCESS) { ap_log_error(APLOG_MARK, APLOG_WARNING, errno, cmd->server, "ISAPI: unable to stat(%s), skipping", filename); return NULL; |