diff options
author | Tim Potter <tpot@samba.org> | 2002-01-30 03:14:20 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-01-30 03:14:20 +0000 |
commit | 4b9839c58a99cb17cd891c6490e7d194f0311b81 (patch) | |
tree | 752956e1663d62394f25bcdbcdd56add866f5528 /source3 | |
parent | 8f5fa6871fbc469836077201b2ad5b9d661e545f (diff) | |
download | samba-4b9839c58a99cb17cd891c6490e7d194f0311b81.tar.gz samba-4b9839c58a99cb17cd891c6490e7d194f0311b81.tar.bz2 samba-4b9839c58a99cb17cd891c6490e7d194f0311b81.zip |
Removed silly fprintf(stderr, ...) debug.
Part of Samuel Ziegler's patch to get winbind password changing working
again in HEAD.
(This used to be commit b5540bee7be957d1def62ee85a84488e0250624b)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/nsswitch/pam_winbind.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/nsswitch/pam_winbind.c b/source3/nsswitch/pam_winbind.c index 7cb2cd8bf1..ab4cb7712b 100644 --- a/source3/nsswitch/pam_winbind.c +++ b/source3/nsswitch/pam_winbind.c @@ -1,6 +1,7 @@ /* pam_winbind module Copyright Andrew Tridgell <tridge@samba.org> 2000 + Copyright Tim Potter <tpot@samba.org> 2000 largely based on pam_userdb by Christian Gafton <gafton@redhat.com> */ @@ -456,8 +457,6 @@ int pam_sm_chauthtok(pam_handle_t *pamh, int flags, int argc, return PAM_AUTHTOK_ERR; } - fprintf(stderr, "oldpw = %s, newpw = %s\n", oldpw, newpw); - if (retval == PAM_SUCCESS && winbind_chauthtok_request(user, oldpw, newpw) == 0) { return PAM_SUCCESS; |