summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-08-30 09:57:49 +1100
committerDamien Miller <djm@mindrot.org>2000-08-30 09:57:49 +1100
commit7cfaaf234f5fad764962462508293a81dc577782 (patch)
treed8379e3de58b1457f1aae83f48e2179401d9e10b
parent5552d7addf529138b4772974afb2ce2a37de33bc (diff)
- (djm) Quieten the pam delete credentials error message
-rw-r--r--ChangeLog1
-rw-r--r--auth-pam.c4
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 669966c4..6042b2d5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,7 @@
- (djm) Clean up diff against OpenBSD.
- (djm) HPUX 11 needs USE_PIPES as well: Kevin Steves
<stevesk@sweden.hp.com>
+ - (djm) Quieten the pam delete credentials error message
20000829
- (djm) Fix ^C ignored issue on Solaris. Diagnosis from Gert
diff --git a/auth-pam.c b/auth-pam.c
index 852dbdc2..e2bac9e8 100644
--- a/auth-pam.c
+++ b/auth-pam.c
@@ -34,7 +34,7 @@
#include "xmalloc.h"
#include "servconf.h"
-RCSID("$Id: auth-pam.c,v 1.11 2000/07/09 12:42:33 djm Exp $");
+RCSID("$Id: auth-pam.c,v 1.12 2000/08/29 22:57:50 djm Exp $");
#define NEW_AUTHTOK_MSG \
"Warning: You password has expired, please change it now"
@@ -111,7 +111,7 @@ void pam_cleanup_proc(void *context)
pam_retval = pam_setcred((pam_handle_t *)pamh, PAM_DELETE_CRED);
if (pam_retval != PAM_SUCCESS) {
- log("Cannot delete credentials: %.200s",
+ debug("Cannot delete credentials: %.200s",
PAM_STRERROR((pam_handle_t *)pamh, pam_retval));
}