summaryrefslogtreecommitdiffstats
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 405357ba..a7693df5 100644
--- a/auth1.c
+++ b/auth1.c
@@ -97,7 +97,7 @@ do_authloop(Authctxt *authctxt)
(!options.kerberos_authentication || options.kerberos_or_local_passwd) &&
#endif
#ifdef USE_PAM
- auth_pam_password(pw, password)) {
+ auth_pam_password(pw, "")) {
#else
auth_password(pw, "")) {
#endif