1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

Complain about duplicate charsets at debug level 0 instead of 2

This commit is contained in:
Jelmer Vernooij 0001-01-01 00:00:00 +00:00
parent d501946ef6
commit d29407d41e

View File

@ -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;
}