diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-10-29 15:06:36 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-11-02 04:36:04 +0000 |
commit | cf4de8ec2c8df2ceabbe3d836d296b058e7b19fb (patch) | |
tree | 9afa59acaf2a8665e9bc9dfc8bdc177db4a7ca36 /source3/param | |
parent | 9da4ace1d9789d300ab298bc34694c44b2062f30 (diff) | |
download | samba-cf4de8ec2c8df2ceabbe3d836d296b058e7b19fb.tar.gz samba-cf4de8ec2c8df2ceabbe3d836d296b058e7b19fb.tar.bz2 samba-cf4de8ec2c8df2ceabbe3d836d296b058e7b19fb.zip |
s3-debug Remove 'AllowDebugChange' and use lp_set_cmdline() instead
By removing this global variable, the API between the two different
debug systems is made more similar. Both s3 and s4 now have
lp_set_cmdline() which ensures that the smb.conf cannot overwrite
these the user-specified log level.
Andrew Bartlett
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, |