summaryrefslogtreecommitdiffstats
path: root/source/utils
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2005-05-24 05:51:20 +0000
committerTim Potter <tpot@samba.org>2005-05-24 05:51:20 +0000
commitfff7e195e65e7e092b83b70c013a4473b4bc1fab (patch)
treeb6d02c12c211949b40f38e2022cf0b4a0bb44687 /source/utils
parentafbbd72d799ac9f9c37239a9edef8ddf73ba53b0 (diff)
downloadsamba-fff7e195e65e7e092b83b70c013a4473b4bc1fab.tar.gz
samba-fff7e195e65e7e092b83b70c013a4473b4bc1fab.tar.xz
samba-fff7e195e65e7e092b83b70c013a4473b4bc1fab.zip
r6951: Fix all calls to setup_logging() that use 'True' as a second argument.
In Samba4 this is now an enum. Possibly by accident, True just happens to map to the right value in this case. (-:
Diffstat (limited to 'source/utils')
-rw-r--r--source/utils/nmblookup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/utils/nmblookup.c b/source/utils/nmblookup.c
index bf034b26a39..fb21cb55296 100644
--- a/source/utils/nmblookup.c
+++ b/source/utils/nmblookup.c
@@ -271,7 +271,7 @@ int main(int argc,char *argv[])
{ 0, 0, 0, 0 }
};
- setup_logging(argv[0], True);
+ setup_logging(argv[0], DEBUG_STDOUT);
pc = poptGetContext("nmblookup", argc, (const char **)argv, long_options,
POPT_CONTEXT_KEEP_FIRST);