]> granicus.if.org Git - apache/commitdiff
Merge r1491458 from trunk:
authorJim Jagielski <jim@apache.org>
Wed, 12 Jun 2013 13:41:09 +0000 (13:41 +0000)
committerJim Jagielski <jim@apache.org>
Wed, 12 Jun 2013 13:41:09 +0000 (13:41 +0000)
mod_cache_socache: Use the name of the socache implementation when performing
a lookup rather than using the raw arguments.

Submitted by: minfrin
Reviewed/backported by: jim

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1492202 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
STATUS
modules/cache/mod_cache_socache.c

diff --git a/CHANGES b/CHANGES
index 056d401868acc751677652056a52b11abf11b116..487336a4340884adf942f19cb89e3b6ad6f80b5a 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,10 @@
 
 Changes with Apache 2.4.5
 
+  *) 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>]
+
   *) core: Add dirwalk_stat hook.  [Jeff Trawick]
 
   *) core: Add post_perdir_config hook.
diff --git a/STATUS b/STATUS
index 0da7d19a1a94d8143b505e1db45416834562ce96..cce52f8ea41751abd4b076ccd5a40f46fc75d5dd 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -95,13 +95,6 @@ PATCHES PROPOSED TO BACKPORT FROM TRUNK:
   [ New proposals should be added at the end of the list ]
 
 
-    * mod_cache_socache: Use the name of the socache implementation when performing 
-      a lookup rather than using the raw arguments. PR 55062
-      trunk patch: http://svn.apache.org/r1491458
-      2.4.x patch: trunk patch works
-      +1: minfrin, rjung, jim
-
-
 
   * mod_auth_basic: Add a generic mechanism to fake basic authentication
     using the ap_expr parser. This allows the administrator to construct
index e6a4c4d992a9a868e73e564582dafd2980225a99..b969bc68f65f5458a2c0163c55c8313c1c4637a2 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 "