diff options
author | Günther Deschner <gd@samba.org> | 2006-10-05 09:38:49 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:15:11 -0500 |
commit | a8281b19c712a4b87f4c826b52ef4aaf16a6fc11 (patch) | |
tree | 8e4352c274cf0b17013817a540447a9b28858dfe | |
parent | 63a0d4aa5bb27edb97701bb533ea7398841b9b1e (diff) | |
download | samba-a8281b19c712a4b87f4c826b52ef4aaf16a6fc11.tar.gz samba-a8281b19c712a4b87f4c826b52ef4aaf16a6fc11.tar.bz2 samba-a8281b19c712a4b87f4c826b52ef4aaf16a6fc11.zip |
r19094: Fix debug statement.
Guenther
(This used to be commit e99696c97052d4ba962e11fcb7b6ea530350913d)
-rw-r--r-- | source3/smbd/chgpasswd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/chgpasswd.c b/source3/smbd/chgpasswd.c index 0b8dbfb492..7c6886b81c 100644 --- a/source3/smbd/chgpasswd.c +++ b/source3/smbd/chgpasswd.c @@ -1029,7 +1029,7 @@ NTSTATUS change_oem_password(struct samu *hnd, char *old_passwd, char *new_passw /* check to see if the secdesc has previously been set to disallow */ if (!pdb_get_pass_can_change(hnd)) { - DEBUG(1, ("user %s does not have permissions to change password\n")); + DEBUG(1, ("user %s does not have permissions to change password\n", username)); if (samr_reject_reason) { *samr_reject_reason = REJECT_REASON_OTHER; } |