diff options
-rw-r--r-- | loginutils/login.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/loginutils/login.c b/loginutils/login.c index 66ac7cf4c..ce87e318a 100644 --- a/loginutils/login.c +++ b/loginutils/login.c | |||
@@ -442,6 +442,9 @@ int login_main(int argc UNUSED_PARAM, char **argv) | |||
442 | } | 442 | } |
443 | /* check that the account is healthy */ | 443 | /* check that the account is healthy */ |
444 | pamret = pam_acct_mgmt(pamh, 0); | 444 | pamret = pam_acct_mgmt(pamh, 0); |
445 | if (pamret == PAM_NEW_AUTHTOK_REQD) { | ||
446 | pamret = pam_chauthtok(pamh, PAM_CHANGE_EXPIRED_AUTHTOK); | ||
447 | } | ||
445 | if (pamret != PAM_SUCCESS) { | 448 | if (pamret != PAM_SUCCESS) { |
446 | failed_msg = "acct_mgmt"; | 449 | failed_msg = "acct_mgmt"; |
447 | goto pam_auth_failed; | 450 | goto pam_auth_failed; |