diff options
author | stevesk <stevesk> | 2001-02-13 11:26:21 +0000 |
---|---|---|
committer | stevesk <stevesk> | 2001-02-13 11:26:21 +0000 |
commit | e37f0d8eaddfc25e99d153e362f03f3296a84f55 (patch) | |
tree | 09690414ea86a9b3f6fa217004627781e63a3b99 /auth1.c | |
parent | c0f52f3866f1528ad27199b9a0e3b25687663aff (diff) | |
download | openssh-e37f0d8eaddfc25e99d153e362f03f3296a84f55.tar.gz |
- (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 |