summaryrefslogtreecommitdiff
path: root/source4/lib
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-06-14 07:24:13 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:56:39 -0500
commit7de7dafcc4472f7aaecd04320811a21b0e42d444 (patch)
treecf3e905c59d43ef9d8492cd856fb2fceb2021281 /source4/lib
parent9f38798509616199d2c53dcd386ea1bc3e21df8f (diff)
downloadsamba-7de7dafcc4472f7aaecd04320811a21b0e42d444.tar.gz
samba-7de7dafcc4472f7aaecd04320811a21b0e42d444.tar.bz2
samba-7de7dafcc4472f7aaecd04320811a21b0e42d444.zip
r1130: remove some pointless debug messages
(This used to be commit 260be3fbef5a198621274cfe0c0250f292d819ca)
Diffstat (limited to 'source4/lib')
-rw-r--r--source4/lib/iconv.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/source4/lib/iconv.c b/source4/lib/iconv.c
index f75621af09..cb861a7bb8 100644
--- a/source4/lib/iconv.c
+++ b/source4/lib/iconv.c
@@ -70,7 +70,6 @@ static NTSTATUS charset_register_backend(void *_funcs)
struct charset_functions *funcs = (struct charset_functions *)_funcs;
struct charset_functions *c = charsets;
- DEBUG(5, ("Attempting to register new charset %s\n", funcs->name));
/* Check whether we already have this charset... */
while(c) {
if(!strcasecmp(c->name, funcs->name)){
@@ -81,7 +80,6 @@ static NTSTATUS charset_register_backend(void *_funcs)
}
funcs->next = funcs->prev = NULL;
- DEBUG(5, ("Registered charset %s\n", funcs->name));
DLIST_ADD(charsets, funcs);
return NT_STATUS_OK;
}