Commit 48b8f813 authored by Bill Stoddard's avatar Bill Stoddard
Browse files

Win32: Get exec cgi tag working. finfo.protection == 0 on Windows from the

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
parent 2ad52ed5
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
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
+1 −1
Original line number Diff line number Diff line
@@ -815,7 +815,7 @@ static int include_cgi(char *s, request_rec *r, ap_filter_t *next,
    if ((rr->path_info && rr->path_info[0]) || rr->args) {
        return -1;
    }
    if (rr->finfo.protection == 0) {
    if (rr->finfo.filetype == 0) {
        return -1;
    }

+1 −1
Original line number Diff line number Diff line
@@ -1060,7 +1060,7 @@ static int include_cgi(char *s, request_rec *r, ap_filter_t *next,
    if ((rr->path_info && rr->path_info[0]) || rr->args) {
        return -1;
    }
    if (rr->finfo.protection == 0) {
    if (rr->finfo.filetype == 0) {
        return -1;
    }