summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2001-04-23 18:38:37 +0000
committerKevin Steves <stevesk@pobox.com>2001-04-23 18:38:37 +0000
commit706e7a9cf93fad3a8b0b7cd524c44d9e17e64da7 (patch)
treeb0b742e123df1fdcc96bd562c7119c836f338434
parent265fb440e777b05795b6643058032af75d7f5b0e (diff)
- (stevesk) auth-pam.c: use PERMIT_NO_PASSWD
-rw-r--r--ChangeLog3
-rw-r--r--auth-pam.c4
2 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 19fe40b5..3773ac9b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,7 @@
[ssh-keygen.1 ssh.1 sshd.8]
document hostbased and other cleanup
- (stevesk) start_pam() doesn't use DNS now for sshd -u0.
+ - (stevesk) auth-pam.c: use PERMIT_NO_PASSWD
20010422
- OpenBSD CVS Sync
@@ -5232,4 +5233,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
-$Id: ChangeLog,v 1.1162 2001/04/23 17:55:26 stevesk Exp $
+$Id: ChangeLog,v 1.1163 2001/04/23 18:38:37 stevesk Exp $
diff --git a/auth-pam.c b/auth-pam.c
index 91854a40..2b3308a9 100644
--- a/auth-pam.c
+++ b/auth-pam.c
@@ -35,7 +35,7 @@
extern char *__progname;
-RCSID("$Id: auth-pam.c,v 1.36 2001/04/23 17:28:29 stevesk Exp $");
+RCSID("$Id: auth-pam.c,v 1.37 2001/04/23 18:38:37 stevesk Exp $");
#define NEW_AUTHTOK_MSG \
"Warning: Your password has expired, please change it now"
@@ -209,7 +209,7 @@ int auth_pam_password(struct passwd *pw, const char *password)
/* deny if no user. */
if (pw == NULL)
return 0;
- if (pw->pw_uid == 0 && options.permit_root_login == 2)
+ if (pw->pw_uid == 0 && options.permit_root_login == PERMIT_NO_PASSWD)
return 0;
if (*password == '\0' && options.permit_empty_passwd == 0)
return 0;