- (stevesk) auth1.c: fix PAM passwordless check.

This commit is contained in:
Kevin Steves 2001-02-13 11:26:21 +00:00
parent 34bb0c7431
commit bca8c8f3a1
2 changed files with 3 additions and 2 deletions

View File

@ -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 <tim@multitalents.net>
- (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 $

View File

@ -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