]> granicus.if.org Git - apache/commitdiff
mod_cache_socache: Use the name of the socache implementation when performing
authorGraham Leggett <minfrin@apache.org>
Mon, 10 Jun 2013 14:08:43 +0000 (14:08 +0000)
committerGraham Leggett <minfrin@apache.org>
Mon, 10 Jun 2013 14:08:43 +0000 (14:08 +0000)
a lookup rather than using the raw arguments.

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

CHANGES
modules/cache/mod_cache_socache.c

diff --git a/CHANGES b/CHANGES
index de4d2bb4aa8eabe00572c68533e7f04e9fec53e0..8bc8e0263b6a4a9e3466b5ce6e528a5a01cc685d 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,10 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.5.0
+
+  *) mod_cache_socache: Use the name of the socache implementation when performing
+     a lookup rather than using the raw arguments. [Martin Ksellmann
+     <martin@ksellmann.de>]
+
   *) rotatelogs: add -n number-of-files option to roate through a number
      of fixed-name logfiles. [Eric Covener]
 
index 9e86f331bd05fb6a3f34fc2ef9a0e89a5cc356a9..e75e124e42a060193ebd1bf596c95bd09b41e48c 100644 (file)
@@ -1273,7 +1273,7 @@ static const char *set_cache_socache(cmd_parms *cmd, void *in_struct_ptr,
     }
 
     provider->socache_provider = ap_lookup_provider(AP_SOCACHE_PROVIDER_GROUP,
-            arg, AP_SOCACHE_PROVIDER_VERSION);
+            name, AP_SOCACHE_PROVIDER_VERSION);
     if (provider->socache_provider == NULL) {
         err = apr_psprintf(cmd->pool,
                 "Unknown socache provider '%s'. Maybe you need "