ben 00/01/11 06:23:04
Modified: src CHANGES
src/modules/standard mod_actions.c
Log:
Make Action work when Location doesn't exist.
Submitted by: Manoj
Reviewed by: Ben
Revision Changes Path
1.1492 +4 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1491
retrieving revision 1.1492
diff -u -r1.1491 -r1.1492
--- CHANGES 2000/01/11 14:13:37 1.1491
+++ CHANGES 2000/01/11 14:22:59 1.1492
@@ -1,5 +1,9 @@
Changes with Apache 1.3.10
+ *) An Action set for a Location that didn't correspond to a file didn't
+ work. Fixed.
+ [Manoj Kasichainula, Ben Laurie]
+
*) ProxyPass erroneously converted authentication requests to proxy
authentication requests. Fixed.
[Ben Laurie]
1.33 +0 -5 apache-1.3/src/modules/standard/mod_actions.c
Index: mod_actions.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_actions.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- mod_actions.c 1999/12/08 19:01:48 1.32
+++ mod_actions.c 2000/01/11 14:23:03 1.33
@@ -245,11 +245,6 @@
if ((t = ap_table_get(conf->action_types,
action ? action : ap_default_type(r)))) {
script = t;
- if (r->finfo.st_mode == 0) {
- ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, r,
- "File does not exist: %s", r->filename);
- return NOT_FOUND;
- }
}
if (script == NULL) {