From eef77ddb472cb70497ab6f23cae29e0b1197dcab Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Wed, 24 Jun 2020 14:36:18 +0000 Subject: [PATCH] mod_http2: making filter names all uppercase again. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1879156 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http2/h2_task.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/http2/h2_task.c b/modules/http2/h2_task.c index 0e36d87804c..4ec4e01fd59 100644 --- a/modules/http2/h2_task.c +++ b/modules/http2/h2_task.c @@ -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); -- 2.47.3