From 4f5c5ca522e22e2480025a8a33c831741fffac21 Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Sat, 18 Nov 2000 20:03:16 +0000 Subject: [PATCH] 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 --- server/util_filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.50.1