mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-07 22:58:11 +00:00
3352fe7273
PR: 8522 Submitted by: maintainer
24 lines
733 B
Plaintext
24 lines
733 B
Plaintext
*** src/main/http_request.c.orig Tue Oct 6 14:06:09 1998
|
|
--- src/main/http_request.c Sat Oct 31 15:49:04 1998
|
|
***************
|
|
*** 187,192 ****
|
|
--- 187,194 ----
|
|
return OK;
|
|
}
|
|
|
|
+ if (r->execfilename) path = r->execfilename;
|
|
+
|
|
#ifdef WIN32
|
|
/* If the path is x:/, then convert it to x:/., coz that's what stat
|
|
* needs to work properly
|
|
***************
|
|
*** 461,466 ****
|
|
--- 463,469 ----
|
|
res = ap_parse_htaccess(&htaccess_conf, r, overrides_here,
|
|
ap_pstrdup(r->pool, test_dirname),
|
|
sconf->access_name);
|
|
+ if (r->execfilename) r->filename = r->execfilename;
|
|
if (res)
|
|
return res;
|
|
|