]> granicus.if.org Git - apache/commitdiff
Merge r1492663 from trunk:
authorJim Jagielski <jim@apache.org>
Mon, 24 Jun 2013 18:14:30 +0000 (18:14 +0000)
committerJim Jagielski <jim@apache.org>
Mon, 24 Jun 2013 18:14:30 +0000 (18:14 +0000)
mod_cache_socache: Make sure the CacheSocacheMaxSize directive is merged
correctly.

Submitted by: minfrin
Reviewed/backported by: jim

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

CHANGES
STATUS
modules/cache/mod_cache_socache.c

diff --git a/CHANGES b/CHANGES
index 2c938bdd707eba2752c08ef90b9422a88c899442..b1d3212c786a993164b9c9e3d17cd2fb55b79f14 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,9 +1,13 @@
                                                          -*- coding: utf-8 -*-
-  *) rotatelogs: add -n number-of-files option to roate through a number
-     of fixed-name logfiles. [Eric Covener]
 
 Changes with Apache 2.4.5
 
+  *) mod_cache_socache: Make sure the CacheSocacheMaxSize directive is merged
+     correctly. [Jens Låås <jelaas gmail.com>]
+
+  *) rotatelogs: add -n number-of-files option to roate through a number
+     of fixed-name logfiles. [Eric Covener]
+
   *) mod_proxy: Support web-socket tunnels via mod_proxy_wstunnel.
      [Jim Jagielski]
 
diff --git a/STATUS b/STATUS
index 81157d88b8ae91a22c0cc00e340271d961c9b3f3..ebc01d34923bdef2b9a620aee07f8d4958d0f3b6 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -90,11 +90,6 @@ RELEASE SHOWSTOPPERS:
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
 
-    * mod_cache_socache: Make sure the CacheSocacheMaxSize directive is merged
-      correctly.
-      trunk patch: http://svn.apache.org/r1492663
-      2.4.x patch: trunk patch works modulo CHANGES
-      +1: minfrin, covener, jailletc36
 
 PATCHES PROPOSED TO BACKPORT FROM TRUNK:
   [ New proposals should be added at the end of the list ]
index 7be264adce333223ddc4cea881fa4a11aa7b4a01..913de2ee9cff6359ac14fb56ee3faa2673e7ff19 100644 (file)
@@ -1292,6 +1292,7 @@ static const char *set_cache_max(cmd_parms *parms, void *in_struct_ptr,
             < 1024) {
         return "CacheSocacheMaxSize argument must be a integer representing the max size of a cached entry (headers and body), at least 1024";
     }
+    dconf->max_set = 1;
     return NULL;
 }