summaryrefslogtreecommitdiff
path: root/source3/torture/masktest.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2010-10-29 15:29:09 +1100
committerAndrew Bartlett <abartlet@samba.org>2010-11-02 04:36:04 +0000
commitd9f67eebf621adacf5514c7ba1ed17b4953db762 (patch)
treed47933d295d9291c0711bb6c103c7c365c685d49 /source3/torture/masktest.c
parentcf4de8ec2c8df2ceabbe3d836d296b058e7b19fb (diff)
downloadsamba-d9f67eebf621adacf5514c7ba1ed17b4953db762.tar.gz
samba-d9f67eebf621adacf5514c7ba1ed17b4953db762.tar.bz2
samba-d9f67eebf621adacf5514c7ba1ed17b4953db762.zip
s3-debug Remove last direct assignements to DEBUGLEVEL
All future assignments of the debug level should go via lp_set_cmdline("log level", "x") because this will ensure the value is not overwritten in an smb.conf load. Andrew Bartlett
Diffstat (limited to 'source3/torture/masktest.c')
-rw-r--r--source3/torture/masktest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/torture/masktest.c b/source3/torture/masktest.c
index 335bc4ca22..1fc46b9c28 100644
--- a/source3/torture/masktest.c
+++ b/source3/torture/masktest.c
@@ -515,7 +515,7 @@ static void usage(void)
NumLoops = atoi(optarg);
break;
case 'd':
- DEBUGLEVEL = atoi(optarg);
+ lp_set_cmdline("log level", optarg);
break;
case 'E':
die_on_error = 1;