From b98f31a568f96ac2435605f06be0d572d7b8b936 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Sat, 23 Sep 2000 22:09:30 +0000 Subject: [PATCH] The new core post_read_request hook needs to return something (DECLINED). This allows Apache to serve pages again (other than the 500 Internal Server Error page, that is). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86309 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http/http_core.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/http/http_core.c b/modules/http/http_core.c index 5fbd376b98..e902341138 100644 --- a/modules/http/http_core.c +++ b/modules/http/http_core.c @@ -3287,6 +3287,7 @@ static unsigned short core_port(const request_rec *r) static int core_post_read_req(request_rec *r) { ap_add_filter("CORE", NULL, r); + return DECLINED; } static void core_register_filter(request_rec *r) -- 2.40.0