summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-09-15 05:01:27 +0000
committerTim Potter <tpot@samba.org>2003-09-15 05:01:27 +0000
commita9cd4a6ae1709381f896605beb0c3e82c16b330e (patch)
tree97e5325d0eb8ea5553820d2d840202b690c3b8b6 /source3/lib
parenteae6e9f155c78a4f448c1a798f9d7d61f53a2795 (diff)
downloadsamba-a9cd4a6ae1709381f896605beb0c3e82c16b330e.tar.gz
samba-a9cd4a6ae1709381f896605beb0c3e82c16b330e.tar.bz2
samba-a9cd4a6ae1709381f896605beb0c3e82c16b330e.zip
Merge from Samba 3.0:
>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 be91bbd570bd94f67001aab9cfb2baf44b390097)
Diffstat (limited to 'source3/lib')
-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()));