summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin@dahyabhai.net>2013-08-12 23:21:54 -0400
committerNalin Dahyabhai <nalin@dahyabhai.net>2013-08-12 23:21:54 -0400
commit242ba67238ca240db1688d5adaf8ca10a54faafb (patch)
tree1212ebcf4f9a3f27319675a37b1b0ed294115aa0
parent34b3bd612b48f1f9707282e053d22c2fa64c0809 (diff)
downloadslapi-nis-242ba67238ca240db1688d5adaf8ca10a54faafb.tar.gz
slapi-nis-242ba67238ca240db1688d5adaf8ca10a54faafb.tar.xz
slapi-nis-242ba67238ca240db1688d5adaf8ca10a54faafb.zip
Log successful authentication at PLUGIN, not FATAL
The server's mainline code doesn't appear to log successful authentication beyond what already shows up in the access log, so we should probably behave ourselves.
-rw-r--r--src/back-sch-pam.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/back-sch-pam.c b/src/back-sch-pam.c
index 62ffcb1..ae1ae41 100644
--- a/src/back-sch-pam.c
+++ b/src/back-sch-pam.c
@@ -288,7 +288,7 @@ done:
}
/* Log the diagnostic information for the administrator. */
- slapi_log_error(SLAPI_LOG_FATAL, state->plugin_desc->spd_id,
+ slapi_log_error(SLAPI_LOG_PLUGIN, state->plugin_desc->spd_id,
"%s\n", errmsg);
if (errmsg != NULL) {
PR_smprintf_free(errmsg);