diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-01-24 11:26:22 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:17:25 -0500 |
commit | 25f1710991b1d39ce057f9210c36cbaf3d1b0517 (patch) | |
tree | 653945495ac33101f08d2022c526d73d4e45c347 | |
parent | b0d4004396bd1f9a2b9faa4f6ba62d36d63c50ca (diff) | |
download | samba-25f1710991b1d39ce057f9210c36cbaf3d1b0517.tar.gz samba-25f1710991b1d39ce057f9210c36cbaf3d1b0517.tar.bz2 samba-25f1710991b1d39ce057f9210c36cbaf3d1b0517.zip |
r20998: Fix debug message
(This used to be commit a5a1c8c785939e7cf6108adb573ac277726f584b)
-rw-r--r-- | source3/passdb/pdb_smbpasswd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/passdb/pdb_smbpasswd.c b/source3/passdb/pdb_smbpasswd.c index afc00445f4..e01b4b1855 100644 --- a/source3/passdb/pdb_smbpasswd.c +++ b/source3/passdb/pdb_smbpasswd.c @@ -1129,7 +1129,8 @@ static BOOL del_smbfilepwd_entry(struct smbpasswd_privates *smbpasswd_state, con size_t new_entry_length; if (strequal(name, pwd->smb_name)) { - DEBUG(10, ("add_smbfilepwd_entry: found entry with name %s - deleting it.\n", name)); + DEBUG(10, ("del_smbfilepwd_entry: found entry with " + "name %s - deleting it.\n", name)); continue; } |