apr_stat() call in directory walk (because discovering the permissions on
Windows is ridiculously expensive). All we really need to know is whether the
file exists.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89788
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.0.23-dev
+ *) Win32: Get SSI exec cgi tag working. [Bill Stoddard]
*) Add a single listener/multiple worker MPM. This MPM is
definately not fully correct, but it allows us to solve many
if ((rr->path_info && rr->path_info[0]) || rr->args) {
return -1;
}
- if (rr->finfo.protection == 0) {
+ if (rr->finfo.filetype == 0) {
return -1;
}
if ((rr->path_info && rr->path_info[0]) || rr->args) {
return -1;
}
- if (rr->finfo.protection == 0) {
+ if (rr->finfo.filetype == 0) {
return -1;
}