]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Backport r902641: change log level of ldap authn failure message.
authorNick Kew <niq@apache.org>
Wed, 27 Jan 2010 00:53:29 +0000 (00:53 +0000)
committerNick Kew <niq@apache.org>
Wed, 27 Jan 2010 00:53:29 +0000 (00:53 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@903518 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
STATUS
modules/aaa/mod_authnz_ldap.c

diff --git a/CHANGES b/CHANGES
index e44d6494d411690e864a6bc59ce8d5d0d9be5ddc..9840e916a566be58788b5b154c8d8889ae43ade2 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -9,6 +9,10 @@ Changes with Apache 2.2.15
      access control is still vulnerable, unless using OpenSSL >= 0.9.8l.
      [Joe Orton, Ruediger Pluem, Hartmut Keil <Hartmut.Keil adnovum.ch>]
 
+  *) mod_authnz_ldap: Failures to map a username to a DN, or to check a user
+     password now result in an informational level log entry instead of 
+     warning level.  [Eric Covener]
+
   *) Preserve Port information over internal redirects
      PR 35999 [Jonas Ringh <jonas.ringh cixit.se>]
 
diff --git a/STATUS b/STATUS
index c6d310f571e3f175e0dfd2de2526e3fc496cf07d..5eeee58d1cb1ef0b2a199b89a19aace01de4abff 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -87,11 +87,6 @@ RELEASE SHOWSTOPPERS:
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
 
-  * mod_authnz_ldap: log authn failures at INFO instead of WARN
-      Trunk Patch: http://svn.apache.org/viewvc?rev=902641&view=rev
-      2.2.x Patch: trunk patch works
-    +1: covener, sf, fuankg
-
 PATCHES PROPOSED TO BACKPORT FROM TRUNK:
   [ New proposals should be added at the end of the list ]
 
index 9b61022a1d80faebbd31b15e75cd518e96bfb64b..03925b7e8b46ded64316a03cef9b788b41464856 100644 (file)
@@ -409,7 +409,7 @@ start_over:
 
     /* handle bind failure */
     if (result != LDAP_SUCCESS) {
-        ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r,
+        ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r,
                       "[%" APR_PID_T_FMT "] auth_ldap authenticate: "
                       "user %s authentication failed; URI %s [%s][%s]",
                       getpid(), user, r->uri, ldc->reason, ldap_err2string(result));