From 6e92505080fd6764461563e4fdf1172be1ba2963 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 29 Jun 2009 20:12:23 +1000 Subject: Fix ndrdump to use a common setup_logging() API By adding a new common setup_logging_stdout() API, we no longer need to abuse the ABI compatability between the different setup_logging() calls in Samba3 and Samba4's DEBUG() subsystems. The revert of 49a6d757b4d944cd22c91b2838beb83f04fbe1e9 works with this to fix bug 6211. Andrew Bartlett --- source3/lib/debug.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'source3/lib/debug.c') diff --git a/source3/lib/debug.c b/source3/lib/debug.c index 419af61ef3..e7dcfb4fdf 100644 --- a/source3/lib/debug.c +++ b/source3/lib/debug.c @@ -605,6 +605,15 @@ void setup_logging(const char *pname, bool interactive) #endif } +/** + Just run logging to stdout for this program +*/ +_PUBLIC_ void setup_logging_stdout(void) +{ + setup_logging(NULL, True); +} + + /*************************************************************************** Set the logfile name. **************************************************************************/ -- cgit