On Feb 9, 2008, at 12:07 AM, Ruediger Pluem wrote:
I guess this happens in at least one more location at
mod_negotiation
that would also need fixing (in setup_choice_response).
Below are all the only two places I could find. Let me know which
ones I
missed !
IMHO this one is missing:
Index: mod_negotiation.c
===================================================================
--- mod_negotiation.c (Revision 619126)
+++ mod_negotiation.c (Arbeitskopie)
@@ -2712,7 +2712,7 @@
if (!variant->sub_req) {
int status;
- sub_req = ap_sub_req_lookup_file(variant->file_name, r,
NULL);
+ sub_req = ap_sub_req_lookup_file(variant->file_name, r, r-
>output_filters));
status = sub_req->status;
if (status != HTTP_OK &&
Ah - excelent -- and i think that fixed a bug I had as well.
Dw.