1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-08 04:58:40 +03:00

loadparm: drop debug level in map_parameter from 0 to 1

we don't want to see this all the times in tests.

Michael
(This used to be commit fd43a4a1e05a2d259dc75bdcb4c0a3d9d8b41739)
This commit is contained in:
Michael Adam 2008-04-09 01:28:43 +02:00
parent 6dd73c2866
commit 92f52469a9

View File

@ -6064,7 +6064,7 @@ static int map_parameter(const char *pszParmName)
/* Warn only if it isn't parametric option */
if (strchr(pszParmName, ':') == NULL)
DEBUG(0, ("Unknown parameter encountered: \"%s\"\n", pszParmName));
DEBUG(1, ("Unknown parameter encountered: \"%s\"\n", pszParmName));
/* We do return 'fail' for parametric options as well because they are
stored in different storage
*/