14 lines
626 B
Diff
14 lines
626 B
Diff
|
diff --git a/mod_http2/h2_request.c b/mod_http2/h2_request.c
|
||
|
index 45df9b1..70241d4 100644
|
||
|
--- a/mod_http2/h2_request.c
|
||
|
+++ b/mod_http2/h2_request.c
|
||
|
@@ -371,7 +371,7 @@ request_rec *h2_request_create_rec(const h2_request *req, conn_rec *c)
|
||
|
ap_add_input_filter_handle(ap_http_input_filter_handle,
|
||
|
NULL, r, r->connection);
|
||
|
|
||
|
- if ((access_status = ap_run_post_read_request(r))) {
|
||
|
+ if ((access_status = ap_post_read_request(r))) {
|
||
|
/* Request check post hooks failed. An example of this would be a
|
||
|
* request for a vhost where h2 is disabled --> 421.
|
||
|
*/
|