]> granicus.if.org Git - apache/commitdiff
The headers need to be at the end of the request_based filters.
authorRyan Bloom <rbb@apache.org>
Sun, 22 Oct 2000 15:26:05 +0000 (15:26 +0000)
committerRyan Bloom <rbb@apache.org>
Sun, 22 Oct 2000 15:26:05 +0000 (15:26 +0000)
Submitted by: Jon Travis <jtravis@covalent.net>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86703 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_core.c

index 368ed40f558a547b4fef3a863841b4048bf77ef7..690307ebceaf0bff45b2a609496a8e77355bf21e 100644 (file)
@@ -3579,7 +3579,7 @@ static void register_hooks(void)
     ap_register_input_filter("HTTP_IN", ap_http_filter, AP_FTYPE_CONNECTION);
     ap_register_input_filter("DECHUNK", ap_dechunk_filter, AP_FTYPE_CONNECTION + 1);
     ap_register_input_filter("CORE_IN", core_input_filter, AP_FTYPE_CONNECTION);
-    ap_register_output_filter("HTTP_HEADER", ap_http_header_filter, AP_FTYPE_CONTENT + 1);
+    ap_register_output_filter("HTTP_HEADER", ap_http_header_filter, AP_FTYPE_CONTENT - 1);
     ap_register_output_filter("CORE", core_output_filter, AP_FTYPE_CONNECTION + 1);
     ap_register_output_filter("SUBREQ_CORE", ap_sub_req_output_filter, 
                               AP_FTYPE_CONTENT);