Is this what we meant here?
Index: modules/mappers/mod_negotiation.c
===================================================================
RCS file: /home/cvs/httpd-2.0/modules/mappers/mod_negotiation.c,v
retrieving revision 1.84
diff -u -r1.84 mod_negotiation.c
--- modules/mappers/mod_negotiation.c 2001/10/03 13:10:16 1.84
+++ modules/mappers/mod_negotiation.c 2001/12/13 02:26:11
@@ -2841,7 +2841,8 @@
int res;
int j;
- if (r->finfo.filetype != 0 || !(ap_allow_options(r) & OPT_MULTI)) {
+ if (r->finfo.filetype != APR_NOFILE
+ || !(ap_allow_options(r) & OPT_MULTI)) {
return DECLINED;
}
-aaron