From 9da4ace1d9789d300ab298bc34694c44b2062f30 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 29 Oct 2010 14:19:32 +1100 Subject: 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 --- source3/utils/net.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3/utils/net.c') diff --git a/source3/utils/net.c b/source3/utils/net.c index 9585398a56..6993f9e52c 100644 --- a/source3/utils/net.c +++ b/source3/utils/net.c @@ -822,6 +822,8 @@ static struct functable net_func[] = { zero_sockaddr(&c->opt_dest_ip); + setup_logging(argv[0], DEBUG_STDERR); + load_case_tables(); setlocale(LC_ALL, ""); @@ -834,7 +836,6 @@ static struct functable net_func[] = { /* set default debug level to 0 regardless of what smb.conf sets */ DEBUGLEVEL_CLASS[DBGC_ALL] = 0; - dbf = x_stderr; c->private_data = net_func; pc = poptGetContext(NULL, argc, (const char **) argv, long_options, -- cgit