1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

For some reason testparm runs at debug level 2 which causes the module probe functions to

display verbose debugs.  Increase the probe debugs to level 3.
This commit is contained in:
Tim Potter -
parent 8a57f1a72c
commit d71a7470d7

View File

@ -41,7 +41,7 @@ static NTSTATUS do_smb_load_module(const char *module_name, BOOL is_probe)
handle = sys_dlopen(module_name, RTLD_LAZY);
if(!handle) {
int level = is_probe ? 2 : 0;
int level = is_probe ? 3 : 0;
DEBUG(level, ("Error loading module '%s': %s\n", module_name,
sys_dlerror()));