From 4867378592656d812fcd02d1ea24ccb2c99bf9b7 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Tue, 24 May 2005 05:51:20 +0000 Subject: 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. (-: (This used to be commit affacc539864435cbc749a4c1a6b848c61b7182b) --- source4/utils/nmblookup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/utils/nmblookup.c') diff --git a/source4/utils/nmblookup.c b/source4/utils/nmblookup.c index bf034b26a3..fb21cb5529 100644 --- a/source4/utils/nmblookup.c +++ b/source4/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); -- cgit