]> granicus.if.org Git - apache/commitdiff
Increase the maximum length of strings that can be cached by the module from 100...
authorChristophe Jaillet <jailletc36@apache.org>
Sun, 18 Aug 2019 18:52:40 +0000 (18:52 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Sun, 18 Aug 2019 18:52:40 +0000 (18:52 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1865405 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/aaa/mod_authn_socache.c

diff --git a/CHANGES b/CHANGES
index e6b48b22d0ee118a797f1260ac8d339b68f2eb3d..52ced0b2dfee9591bce79e924f4e101ab2922abd 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.5.1
 
+  *) mod_authn_socache: Increase the maximum length of strings that can be cached by
+     the module from 100 to 256.  PR 62149 [<thorsten.meinl knime.com>]
+
   *) mod_ssl: reverting a 2.4.40 change where a superfluous SSLCertificateChainFile configuration
      for a domain managed by mod_md caused a startup error. This happened when mod_md installed 
      its fallback certificate, before it got the first real certificate from Lets Encrypt.
index b0f76e0cc3aa8c0613a5f170cccab492889cd2f2..8514490d2d6f7eff3a42b91482e79763c6789d5f 100644 (file)
@@ -349,7 +349,7 @@ static void ap_authn_cache_store(request_rec *r, const char *module,
     }
 }
 
-#define MAX_VAL_LEN 100
+#define MAX_VAL_LEN 256
 static authn_status check_password(request_rec *r, const char *user,
                                    const char *password)
 {