1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +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 0001-01-01 00:00:00 +00:00
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()));