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-Tag: 2.0.33~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be6629235ff897f3b7b45907b8016950dbc91478;p=thirdparty%2Fapache%2Fhttpd.git 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 9bc560fe839..47275d61530 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); } }