diff options
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/test_lp_load.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/source3/param/test_lp_load.c b/source3/param/test_lp_load.c index 94715b5a59..d5673587a0 100644 --- a/source3/param/test_lp_load.c +++ b/source3/param/test_lp_load.c @@ -20,8 +20,6 @@ #include "includes.h" #include "popt_common.h" -extern bool AllowDebugChange; - int main(int argc, const char **argv) { const char *config_file = get_dyn_CONFIGFILE(); @@ -41,7 +39,7 @@ int main(int argc, const char **argv) TALLOC_CTX *frame = talloc_stackframe(); load_case_tables(); - DEBUGLEVEL_CLASS[DBGC_ALL] = 0; + lp_set_cmdline("log level", "0"); pc = poptGetContext(NULL, argc, argv, long_options, POPT_CONTEXT_KEEP_FIRST); @@ -61,9 +59,6 @@ int main(int argc, const char **argv) count = atoi(count_str); } - /* Don't let the debuglevel be changed by smb.conf. */ - AllowDebugChange = False; - for (i=0; i < count; i++) { printf("call lp_load() #%d: ", i+1); if (!lp_load_with_registry_shares(config_file, |