From 41e97c33abf0eadf3c2d185b0e30e3ae4e9612c9 Mon Sep 17 00:00:00 2001 From: Luke Leighton Date: Mon, 19 Oct 1998 17:50:19 +0000 Subject: output password change messages instead of debug message. (This used to be commit b9e728a97be323e9221889a63ffa02cff5c99403) --- source3/rpcclient/cmd_samr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/rpcclient') diff --git a/source3/rpcclient/cmd_samr.c b/source3/rpcclient/cmd_samr.c index a3fd579095..efb1bcf974 100644 --- a/source3/rpcclient/cmd_samr.c +++ b/source3/rpcclient/cmd_samr.c @@ -106,11 +106,11 @@ void cmd_sam_ntchange_pwd(struct client_info *info) if (res) { - DEBUG(5,("cmd_sam_ntpasswd_chg: succeeded\n")); + fprintf(out_hnd, "NT Password changed OK\n")); } else { - DEBUG(5,("cmd_sam_ntpasswd_chg: failed\n")); + fprintf(out_hnd, "NT Password change FAILED\n")); } } -- cgit