]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge r1865405 from trunk:
authorChristophe Jaillet <jailletc36@apache.org>
Sat, 9 Nov 2019 21:43:09 +0000 (21:43 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Sat, 9 Nov 2019 21:43:09 +0000 (21:43 +0000)
Increase the maximum length of strings that can be cached.
PR 62149

Submitted by: <thorsten.meinl knime.com>
Reviewed/backported by: jailletc36, jim, ylavic

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

CHANGES
modules/aaa/mod_authn_socache.c

diff --git a/CHANGES b/CHANGES
index 455b35e6f5f5ddff2c466eb4197233452c6c38a9..fc99aeadd8e0752b8bd64e22c026bbfe4ffa0838 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.4.42
    
+  *) 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>]
+
   *) core: On Windows, fix a start-up crash if <IfFile ...> is used with a path that is not
      valid (For example, testing for a file on a flash drive that is not mounted)
      [Christophe Jaillet]
index 550bc6619d2765aa03f0de8d21fcd6aa1616ab5b..ab552bc93c7e4307a27b3b96ed71e5821d816bf9 100644 (file)
@@ -350,7 +350,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)
 {