]> granicus.if.org Git - apache/commitdiff
The new core post_read_request hook needs to return something
authorJeff Trawick <trawick@apache.org>
Sat, 23 Sep 2000 22:09:30 +0000 (22:09 +0000)
committerJeff Trawick <trawick@apache.org>
Sat, 23 Sep 2000 22:09:30 +0000 (22:09 +0000)
(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

index 5fbd376b986789985a683a0311842f387a432e9b..e902341138103286bbe9202f078aa2c686d9f276 100644 (file)
@@ -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)