diff options
author | Kevin Steves <stevesk@pobox.com> | 2001-02-13 12:26:21 +0100 |
---|---|---|
committer | Kevin Steves <stevesk@pobox.com> | 2001-02-13 12:26:21 +0100 |
commit | bca8c8f3a14b41fc98693dbf448a873b7cd30f03 (patch) | |
tree | 6aab64a03dbac0f1c62c2a01cec987422f059a35 /auth1.c | |
parent | - (bal) Use chown() if fchown() does not exist in ftp-server.c patch by (diff) | |
download | openssh-bca8c8f3a14b41fc98693dbf448a873b7cd30f03.tar.xz openssh-bca8c8f3a14b41fc98693dbf448a873b7cd30f03.zip |
- (stevesk) auth1.c: fix PAM passwordless check.
Diffstat (limited to 'auth1.c')
-rw-r--r-- | auth1.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |