summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-01-30 03:14:20 +0000
committerTim Potter <tpot@samba.org>2002-01-30 03:14:20 +0000
commitb5540bee7be957d1def62ee85a84488e0250624b (patch)
tree57c79ce594bc425583c67b2bda8cb9f37350038a
parent91e8cb76628e9fcc5dc117d98d464b26db71654e (diff)
downloadsamba-b5540bee7be957d1def62ee85a84488e0250624b.tar.gz
Removed silly fprintf(stderr, ...) debug.
Part of Samuel Ziegler's patch to get winbind password changing working again in HEAD.
-rw-r--r--source/nsswitch/pam_winbind.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/nsswitch/pam_winbind.c b/source/nsswitch/pam_winbind.c
index 7cb2cd8bf1e..ab4cb7712b1 100644
--- a/source/nsswitch/pam_winbind.c
+++ b/source/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;