mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-30 01:05:14 +02:00
- (djm) Disable PAM password expiry until a complete fix for bug #188 exists
This commit is contained in:
parent
13ce922cc6
commit
ae9d5af0de
@ -1,6 +1,7 @@
|
|||||||
20020426
|
20020426
|
||||||
- (djm) Bug #137, #209: fix make problems for scard/Ssh.bin, do uudecode
|
- (djm) Bug #137, #209: fix make problems for scard/Ssh.bin, do uudecode
|
||||||
during distprep only
|
during distprep only
|
||||||
|
- (djm) Disable PAM password expiry until a complete fix for bug #188 exists
|
||||||
|
|
||||||
20020425
|
20020425
|
||||||
- (stevesk) [defines.h] remove USE_TIMEVAL; unused
|
- (stevesk) [defines.h] remove USE_TIMEVAL; unused
|
||||||
@ -512,4 +513,4 @@
|
|||||||
- (stevesk) entropy.c: typo in debug message
|
- (stevesk) entropy.c: typo in debug message
|
||||||
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2086 2002/04/26 01:25:40 djm Exp $
|
$Id: ChangeLog,v 1.2087 2002/04/26 01:27:24 djm Exp $
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
|
|
||||||
extern char *__progname;
|
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 \
|
#define NEW_AUTHTOK_MSG \
|
||||||
"Warning: Your password has expired, please change it now"
|
"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:
|
case PAM_SUCCESS:
|
||||||
/* This is what we want */
|
/* This is what we want */
|
||||||
break;
|
break;
|
||||||
|
#if 0
|
||||||
case PAM_NEW_AUTHTOK_REQD:
|
case PAM_NEW_AUTHTOK_REQD:
|
||||||
message_cat(&__pam_msg, NEW_AUTHTOK_MSG);
|
message_cat(&__pam_msg, NEW_AUTHTOK_MSG);
|
||||||
/* flag that password change is necessary */
|
/* flag that password change is necessary */
|
||||||
password_change_required = 1;
|
password_change_required = 1;
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
default:
|
default:
|
||||||
log("PAM rejected by account configuration[%d]: "
|
log("PAM rejected by account configuration[%d]: "
|
||||||
"%.200s", pam_retval, PAM_STRERROR(__pamh,
|
"%.200s", pam_retval, PAM_STRERROR(__pamh,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user