]> granicus.if.org Git - apache/commitdiff
Since we don't support chained filters, and can't expect to while the
authorNick Kew <niq@apache.org>
Thu, 29 Nov 2007 11:50:11 +0000 (11:50 +0000)
committerNick Kew <niq@apache.org>
Thu, 29 Nov 2007 11:50:11 +0000 (11:50 +0000)
filter_init problem remains, we should make it clear to users at startup time.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@599393 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/filters/mod_filter.c

diff --git a/CHANGES b/CHANGES
index 72c55401e4318ea364f021c14e3368bc5e857b16..28bea9750c20d26a3f3465857242f334d9e152f6 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -6,7 +6,7 @@ Changes with Apache 2.3.0
      PR 41123.  [Marc Stern <marc.stern approach.be>, Joe Orton]
 
   *) mod_filter: Don't segfault on (unsupported) chained FilterProvider usage.
-     PR 43956 [Nick Kew]
+     PR 43956 [Nick Kew, Ruediger Pluem]
 
   *) mod_unique_id: Fix timestamp value in UNIQUE_ID.
      PR 37064 [Kobayashi <kobayashi firstserver.co.jp>]
index b072119e37674a2964fb71cff4c0f637c5e1da8c..d3c5ce16a790770954efa18cdb312e13e4020114 100644 (file)
@@ -537,10 +537,6 @@ static const char *filter_provider(cmd_parms *cmd, void *CFG, const char *args)
 
     /* if provider has been registered, we can look it up */
     provider_frec = ap_get_output_filter_handle(pname);
-    if (!provider_frec) {
-        provider_frec = apr_hash_get(cfg->live_filters, pname,
-                                     APR_HASH_KEY_STRING);
-    }
     if (!provider_frec) {
         return apr_psprintf(cmd->pool, "Unknown filter provider %s", pname);
     }