From bca8c8f3a14b41fc98693dbf448a873b7cd30f03 Mon Sep 17 00:00:00 2001 From: Kevin Steves Date: Tue, 13 Feb 2001 11:26:21 +0000 Subject: [PATCH] - (stevesk) auth1.c: fix PAM passwordless check. --- ChangeLog | 3 ++- auth1.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 581181db9..013a092b8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,7 @@ (backed out of original patch and removed it from ChangeLog) - (bal) Use chown() if fchown() does not exist in ftp-server.c patch by Tim Rice + - (stevesk) auth1.c: fix PAM passwordless check. 20010212 - (djm) Update Redhat specfile to allow --define "skip_x11_askpass 1", @@ -3912,4 +3913,4 @@ - Wrote replacements for strlcpy and mkdtemp - Released 1.0pre1 -$Id: ChangeLog,v 1.753 2001/02/13 02:40:56 mouring Exp $ +$Id: ChangeLog,v 1.754 2001/02/13 11:26:21 stevesk Exp $ 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) (!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