summaryrefslogtreecommitdiff
path: root/source3/lib/module.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-09-15 00:19:25 +0000
committerTim Potter <tpot@samba.org>2003-09-15 00:19:25 +0000
commit1d7e64e091573d34427585b36e88f815799c30f3 (patch)
tree76b0e05647ecfe4eb4c9674ab07ba40b7356a174 /source3/lib/module.c
parentbb3f2a3e6305737895ba39a3ddb12b7f1e03867e (diff)
downloadsamba-1d7e64e091573d34427585b36e88f815799c30f3.tar.gz
samba-1d7e64e091573d34427585b36e88f815799c30f3.tar.bz2
samba-1d7e64e091573d34427585b36e88f815799c30f3.zip
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 used to be commit d71a7470d721be05ecde44010cf278e8de08d9d3)
Diffstat (limited to 'source3/lib/module.c')
-rw-r--r--source3/lib/module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/module.c b/source3/lib/module.c
index e2c6f6dcf5..941a6cfbe3 100644
--- a/source3/lib/module.c
+++ b/source3/lib/module.c
@@ -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()));