diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-10-29 14:19:32 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-11-02 04:36:04 +0000 |
commit | 9da4ace1d9789d300ab298bc34694c44b2062f30 (patch) | |
tree | 0c4ce1fa4f3a97934c9504263fdfc86a28e39705 /source3/torture/locktest2.c | |
parent | 4ae27891f8ac0a56d68b0544e78d6c17ade0c1c9 (diff) | |
download | samba-9da4ace1d9789d300ab298bc34694c44b2062f30.tar.gz samba-9da4ace1d9789d300ab298bc34694c44b2062f30.tar.bz2 samba-9da4ace1d9789d300ab298bc34694c44b2062f30.zip |
s3-debug Impove setup_logging() to specify logging to stderr
This change improves the setup_logging() API so that callers which
wish to set up logging to stderr can simply ask for it, rather than
directly modify the dbf global variable.
Andrew Bartlett
Diffstat (limited to 'source3/torture/locktest2.c')
-rw-r--r-- | source3/torture/locktest2.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source3/torture/locktest2.c b/source3/torture/locktest2.c index 5c8a2d8019..033fe123ad 100644 --- a/source3/torture/locktest2.c +++ b/source3/torture/locktest2.c @@ -491,13 +491,13 @@ static void usage(void) setlinebuf(stdout); - dbf = x_stderr; - if (argc < 5 || argv[1][0] == '-') { usage(); exit(1); } + setup_logging(argv[0], DEBUG_STDOUT); + share1 = argv[1]; share2 = argv[2]; nfspath1 = argv[3]; @@ -506,8 +506,6 @@ static void usage(void) all_string_sub(share1,"/","\\",0); all_string_sub(share2,"/","\\",0); - setup_logging(argv[0],True); - argc -= 4; argv += 4; |