diff options
author | Tim Potter <tpot@samba.org> | 2003-09-15 05:01:27 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-09-15 05:01:27 +0000 |
commit | a9cd4a6ae1709381f896605beb0c3e82c16b330e (patch) | |
tree | 97e5325d0eb8ea5553820d2d840202b690c3b8b6 /source3 | |
parent | eae6e9f155c78a4f448c1a798f9d7d61f53a2795 (diff) | |
download | samba-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')
-rw-r--r-- | source3/lib/module.c | 2 |
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())); |