summaryrefslogtreecommitdiffstats
path: root/auth-pam.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-04-26 11:27:24 +1000
committerDamien Miller <djm@mindrot.org>2002-04-26 11:27:24 +1000
commitae9d5af0dee1381afd17c757674b31afef1564ca (patch)
treed8145a28a6a23939649bbb7275690c007167f67f /auth-pam.c
parent13ce922cc6edd189056b278c4f0f67511449c821 (diff)
- (djm) Disable PAM password expiry until a complete fix for bug #188 exists
Diffstat (limited to 'auth-pam.c')
-rw-r--r--auth-pam.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/auth-pam.c b/auth-pam.c
index 222b358c..10a87fa4 100644
--- a/auth-pam.c
+++ b/auth-pam.c
@@ -36,7 +36,7 @@
extern char *__progname;
-RCSID("$Id: auth-pam.c,v 1.44 2002/04/23 10:28:49 djm Exp $");
+RCSID("$Id: auth-pam.c,v 1.45 2002/04/26 01:27:24 djm Exp $");
#define NEW_AUTHTOK_MSG \
"Warning: Your password has expired, please change it now"
@@ -254,11 +254,13 @@ int do_pam_account(char *username, char *remote_user)
case PAM_SUCCESS:
/* This is what we want */
break;
+#if 0
case PAM_NEW_AUTHTOK_REQD:
message_cat(&__pam_msg, NEW_AUTHTOK_MSG);
/* flag that password change is necessary */
password_change_required = 1;
break;
+#endif
default:
log("PAM rejected by account configuration[%d]: "
"%.200s", pam_retval, PAM_STRERROR(__pamh,