From: Stefan Eissing Date: Wed, 24 Jun 2020 14:36:18 +0000 (+0000) Subject: mod_http2: making filter names all uppercase again. X-Git-Tag: 2.5.0-alpha2-ci-test-only~1334 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eef77ddb472cb70497ab6f23cae29e0b1197dcab;p=thirdparty%2Fapache%2Fhttpd.git 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 --- 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);