summaryrefslogtreecommitdiffstats
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 0e791094..ee21149d 100644
--- a/auth.c
+++ b/auth.c
@@ -119,13 +119,11 @@ allowed_user(struct passwd * pw)
return 0;
}
}
-#endif
-
-#if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
passwd = spw->sp_pwdp;
#else
passwd = pw->pw_passwd;
#endif
+
/* check for locked account */
if (strcmp(passwd, "*LK*") == 0 || passwd[0] == '!') {
log("User %.100s not allowed because account is locked",