summaryrefslogtreecommitdiff
path: root/auth.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-01-07 16:15:20 +1100
committerDamien Miller <djm@mindrot.org>2003-01-07 16:15:20 +1100
commit64004b5566282ceb395674e0c4aaa89e04b3847d (patch)
tree4f77531d6dd1805d834f5489ede3e6c989273313 /auth.c
parente832819cf7289b467070fc31c5080c133f0a101e (diff)
- (djm) Fix Bug #442 for PAM case
Diffstat (limited to 'auth.c')
-rw-r--r--auth.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/auth.c b/auth.c
index 0e7910943..ee21149df 100644
--- a/auth.c
+++ b/auth.c
@@ -119,13 +119,11 @@ allowed_user(struct passwd * pw)
119 return 0; 119 return 0;
120 } 120 }
121 } 121 }
122#endif
123
124#if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
125 passwd = spw->sp_pwdp; 122 passwd = spw->sp_pwdp;
126#else 123#else
127 passwd = pw->pw_passwd; 124 passwd = pw->pw_passwd;
128#endif 125#endif
126
129 /* check for locked account */ 127 /* check for locked account */
130 if (strcmp(passwd, "*LK*") == 0 || passwd[0] == '!') { 128 if (strcmp(passwd, "*LK*") == 0 || passwd[0] == '!') {
131 log("User %.100s not allowed because account is locked", 129 log("User %.100s not allowed because account is locked",