summaryrefslogtreecommitdiff
path: root/auth1.c
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2001-02-13 11:26:21 +0000
committerKevin Steves <stevesk@pobox.com>2001-02-13 11:26:21 +0000
commitbca8c8f3a14b41fc98693dbf448a873b7cd30f03 (patch)
tree6aab64a03dbac0f1c62c2a01cec987422f059a35 /auth1.c
parent34bb0c7431d4e41e506eb51cc4a39251110d3f49 (diff)
- (stevesk) auth1.c: fix PAM passwordless check.
Diffstat (limited to 'auth1.c')
-rw-r--r--auth1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/auth1.c b/auth1.c
index 405357ba0..a7693df59 100644
--- a/auth1.c
+++ b/auth1.c
@@ -97,7 +97,7 @@ do_authloop(Authctxt *authctxt)
97 (!options.kerberos_authentication || options.kerberos_or_local_passwd) && 97 (!options.kerberos_authentication || options.kerberos_or_local_passwd) &&
98#endif 98#endif
99#ifdef USE_PAM 99#ifdef USE_PAM
100 auth_pam_password(pw, password)) { 100 auth_pam_password(pw, "")) {
101#else 101#else
102 auth_password(pw, "")) { 102 auth_password(pw, "")) {
103#endif 103#endif