From: Ryan Bloom Date: Sun, 3 Mar 2002 22:18:45 +0000 (+0000) Subject: I forgot the return, which mean meaningless log messages. This makes us X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c8dace72866cee7191e74ce01ef367b2a9bc511a;p=apache 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 --- 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); } }