summaryrefslogtreecommitdiffstats
path: root/auth-pam.c
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 /auth-pam.c
parent5552d7addf529138b4772974afb2ce2a37de33bc (diff)
- (djm) Quieten the pam delete credentials error message
Diffstat (limited to 'auth-pam.c')
-rw-r--r--auth-pam.c4
1 files changed, 2 insertions, 2 deletions
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));
}