summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2001-02-13 11:26:21 +0000
committerKevin Steves <stevesk@pobox.com>2001-02-13 11:26:21 +0000
commitbca8c8f3a14b41fc98693dbf448a873b7cd30f03 (patch)
tree6aab64a03dbac0f1c62c2a01cec987422f059a35
parent34bb0c7431d4e41e506eb51cc4a39251110d3f49 (diff)
- (stevesk) auth1.c: fix PAM passwordless check.
-rw-r--r--ChangeLog3
-rw-r--r--auth1.c2
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 @@
5 (backed out of original patch and removed it from ChangeLog) 5 (backed out of original patch and removed it from ChangeLog)
6 - (bal) Use chown() if fchown() does not exist in ftp-server.c patch by 6 - (bal) Use chown() if fchown() does not exist in ftp-server.c patch by
7 Tim Rice <tim@multitalents.net> 7 Tim Rice <tim@multitalents.net>
8 - (stevesk) auth1.c: fix PAM passwordless check.
8 9
920010212 1020010212
10 - (djm) Update Redhat specfile to allow --define "skip_x11_askpass 1", 11 - (djm) Update Redhat specfile to allow --define "skip_x11_askpass 1",
@@ -3912,4 +3913,4 @@
3912 - Wrote replacements for strlcpy and mkdtemp 3913 - Wrote replacements for strlcpy and mkdtemp
3913 - Released 1.0pre1 3914 - Released 1.0pre1
3914 3915
3915$Id: ChangeLog,v 1.753 2001/02/13 02:40:56 mouring Exp $ 3916$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)
97 (!options.kerberos_authentication || options.kerberos_or_local_passwd) && 97 (!options.kerberos_authentication || options.kerberos_or_local_passwd) &&
98#endif 98#endif
99#ifdef USE_PAM 99#ifdef USE_PAM
100 auth_pam_password(pw, password)) { 100 auth_pam_password(pw, "")) {
101#else 101#else
102 auth_password(pw, "")) { 102 auth_password(pw, "")) {
103#endif 103#endif