From: Ryan Bloom Date: Sat, 18 Nov 2000 20:03:16 +0000 (+0000) Subject: Fix an error message since we are using common code to add all filters. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=40599cfc175153aef6462ffbf2f3daa6d21c086f;p=apache Fix an error message since we are using common code to add all filters. Submitted by: Greg Stein git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87015 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/util_filter.c b/server/util_filter.c index 3be1d8219b..1fdcf01995 100644 --- a/server/util_filter.c +++ b/server/util_filter.c @@ -155,7 +155,7 @@ static void add_any_filter(const char *name, void *ctx, } ap_log_error(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, 0, NULL, - "an unknown input filter was not added: %s", name); + "an unknown filter was not added: %s", name); } AP_DECLARE(void) ap_add_input_filter(const char *name, void *ctx,