diff options
author | Tomas Mraz <tm@t8m.info> | 2004-11-17 12:54:29 +0000 |
---|---|---|
committer | Tomas Mraz <tm@t8m.info> | 2004-11-17 12:54:29 +0000 |
commit | ee9eba0569374bc2d63f53cc71277f77904700b7 (patch) | |
tree | 320d84573e56d12558ac944cd2f5d6c7b34e4502 /modules/pam_unix/pam_unix_acct.c | |
parent | 31fb24ae8ff7c672d65f849964e66c79e7f9e7d8 (diff) | |
download | pam-ee9eba0569374bc2d63f53cc71277f77904700b7.tar.gz pam-ee9eba0569374bc2d63f53cc71277f77904700b7.tar.bz2 pam-ee9eba0569374bc2d63f53cc71277f77904700b7.zip |
Relevant BUGIDs: Redhat bz 69279
Purpose of commit: bugfix
Commit summary:
---------------
pam_unix: Forced password change shouldn't trump account expiration
Diffstat (limited to 'modules/pam_unix/pam_unix_acct.c')
-rw-r--r-- | modules/pam_unix/pam_unix_acct.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/pam_unix/pam_unix_acct.c b/modules/pam_unix/pam_unix_acct.c index 2cd26792..01925eaf 100644 --- a/modules/pam_unix/pam_unix_acct.c +++ b/modules/pam_unix/pam_unix_acct.c @@ -137,8 +137,7 @@ PAM_EXTERN int pam_sm_acct_mgmt(pam_handle_t * pamh, int flags, curdays = time(NULL) / (60 * 60 * 24); D(("today is %d, last change %d", curdays, spent->sp_lstchg)); - if ((curdays > spent->sp_expire) && (spent->sp_expire != -1) - && (spent->sp_lstchg != 0)) { + if ((curdays > spent->sp_expire) && (spent->sp_expire != -1)) { _log_err(LOG_NOTICE, pamh ,"account %s has expired (account expired)" ,uname); |