summaryrefslogtreecommitdiffstats
path: root/modules/aaa/mod_authnz_ldap.c
diff options
context:
space:
mode:
authorEric Covener <covener@apache.org>2010-01-24 21:54:05 +0100
committerEric Covener <covener@apache.org>2010-01-24 21:54:05 +0100
commitfa60d181031cbaf7b2577cbf9d2e6e36fca58503 (patch)
tree168626565deeee7339393a5a9f6b868f98a593d4 /modules/aaa/mod_authnz_ldap.c
parentNote that a firewall silently dropping packets is a mis-configuration. (diff)
downloadapache2-fa60d181031cbaf7b2577cbf9d2e6e36fca58503.tar.xz
apache2-fa60d181031cbaf7b2577cbf9d2e6e36fca58503.zip
Change LDAP authentication failures (user->DN or password check) to log
level INFO from log level WARNING. This is still liberal for authn providers. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@902641 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--modules/aaa/mod_authnz_ldap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aaa/mod_authnz_ldap.c b/modules/aaa/mod_authnz_ldap.c
index 15aec4de73..28e0bb537e 100644
--- a/modules/aaa/mod_authnz_ldap.c
+++ b/modules/aaa/mod_authnz_ldap.c
@@ -417,7 +417,7 @@ start_over:
return AUTH_USER_NOT_FOUND;
}
- 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));