]> granicus.if.org Git - apache/commitdiff
fix merge of min/max file size by setting corresponding _set
authorEric Covener <covener@apache.org>
Wed, 6 Mar 2013 22:59:41 +0000 (22:59 +0000)
committerEric Covener <covener@apache.org>
Wed, 6 Mar 2013 22:59:41 +0000 (22:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1453604 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/cache/mod_cache_disk.c

diff --git a/CHANGES b/CHANGES
index 8b16e9851b6be905560b97871ec9fa3da44339a6..17b4dc0ebc171a26e832b8279a8ce80336e64572 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,11 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.5.0
+  *) mod_cache_disk: CacheMinFileSize and CacheMaxFileSize were always
+     using compiled in defaults of 1000000/1 respectively. [Eric Covener]
+
+  *) mod_ldap: LDAP connections used for authentication were not respecting
+     LDAPConnectionPoolTimeout.  PR 54587
 
   *) mod_ssl: Quiet FIPS mode weak keys disabled and FIPS not selected emits
      in the error log to debug level.  [William Rowe]
index c050e76ab8d043152b39214d4c22986b9fe78c15..670e4b8d0ceb89315332ed8b6f9199f0c4cd4f09 100644 (file)
@@ -1447,6 +1447,7 @@ static const char
     {
         return "CacheMinFileSize argument must be a non-negative integer representing the min size of a file to cache in bytes.";
     }
+    dconf->minfs_set = 1;
     return NULL;
 }
 
@@ -1460,6 +1461,7 @@ static const char
     {
         return "CacheMaxFileSize argument must be a non-negative integer representing the max size of a file to cache in bytes.";
     }
+    dconf->maxfs_set = 1;
     return NULL;
 }