From d117c3bf0a53ba79a70a960d4daf3a9da9faadab Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 24 Apr 2003 20:42:16 +0000 Subject: Complain about duplicate charsets at debug level 0 instead of 2 (This used to be commit d29407d41eb2ed9cf370e278cb4c95c6c341a08d) --- source3/lib/iconv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib') diff --git a/source3/lib/iconv.c b/source3/lib/iconv.c index 906c831335..a5fcf32b5b 100644 --- a/source3/lib/iconv.c +++ b/source3/lib/iconv.c @@ -85,7 +85,7 @@ BOOL smb_register_charset(struct charset_functions *funcs) /* Check whether we already have this charset... */ if (find_charset_functions(funcs->name)) { - DEBUG(2, ("Duplicate charset %s, not registering\n", funcs->name)); + DEBUG(0, ("Duplicate charset %s, not registering\n", funcs->name)); return False; } -- cgit