]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
mod_http2: making filter names all uppercase again.
authorStefan Eissing <icing@apache.org>
Wed, 24 Jun 2020 14:36:18 +0000 (14:36 +0000)
committerStefan Eissing <icing@apache.org>
Wed, 24 Jun 2020 14:36:18 +0000 (14:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1879156 13f79535-47bb-0310-9956-ffa450edef68

modules/http2/h2_task.c

index 0e36d87804cc3e39e648a6f9f596be7c588a849a..4ec4e01fd59ebb1cbcf58d6f4e8c2229eaaf9527 100644 (file)
@@ -456,9 +456,9 @@ void h2_task_register_hooks(void)
     ap_hook_process_connection(h2_task_process_conn, 
                                NULL, NULL, APR_HOOK_FIRST);
 
-    ap_register_input_filter("H2_secondary_IN", h2_filter_secondary_in,
+    ap_register_input_filter("H2_SECONDARY_IN", h2_filter_secondary_in,
                              NULL, AP_FTYPE_NETWORK);
-    ap_register_output_filter("H2_secondary_OUT", h2_filter_secondary_output,
+    ap_register_output_filter("H2_SECONDARY_OUT", h2_filter_secondary_output,
                               NULL, AP_FTYPE_NETWORK);
     ap_register_output_filter("H2_PARSE_H1", h2_filter_parse_h1,
                               NULL, AP_FTYPE_NETWORK);