summaryrefslogtreecommitdiff
path: root/auth1.c
diff options
context:
space:
mode:
authorstevesk <stevesk>2001-02-13 11:26:21 +0000
committerstevesk <stevesk>2001-02-13 11:26:21 +0000
commite37f0d8eaddfc25e99d153e362f03f3296a84f55 (patch)
tree09690414ea86a9b3f6fa217004627781e63a3b99 /auth1.c
parentc0f52f3866f1528ad27199b9a0e3b25687663aff (diff)
downloadopenssh-e37f0d8eaddfc25e99d153e362f03f3296a84f55.tar.gz
- (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