From c8dace72866cee7191e74ce01ef367b2a9bc511a Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Sun, 3 Mar 2002 22:18:45 +0000 Subject: [PATCH] I forgot the return, which mean meaningless log messages. This makes us return the correct information. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93687 13f79535-47bb-0310-9956-ffa450edef68 --- server/util_filter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/util_filter.c b/server/util_filter.c index 9bc560fe83..47275d6153 100644 --- a/server/util_filter.c +++ b/server/util_filter.c @@ -412,8 +412,8 @@ static ap_filter_t *add_any_filter(const char *name, void *ctx, } if (node && node->frec) { - add_any_filter_handle(node->frec, ctx, r, c, r_filters, p_filters, - c_filters); + return add_any_filter_handle(node->frec, ctx, r, c, r_filters, + p_filters, c_filters); } } -- 2.50.1