From: Günther Deschner Date: Thu, 28 Feb 2008 16:09:47 +0000 (+0100) Subject: Only set DEBUGLEVEL to 0 in libnetapi when not set already. X-Git-Tag: samba-3.2.0pre2~37^2~32 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3ace1601ac5b5d87d6bfd8aa0afe0c75858b6990;p=thirdparty%2Fsamba.git Only set DEBUGLEVEL to 0 in libnetapi when not set already. Guenther --- diff --git a/source/lib/netapi/netapi.c b/source/lib/netapi/netapi.c index 47b3ba93cf6..fb091f6e0b2 100644 --- a/source/lib/netapi/netapi.c +++ b/source/lib/netapi/netapi.c @@ -50,7 +50,9 @@ NET_API_STATUS libnetapi_init(struct libnetapi_ctx **context) return W_ERROR_V(WERR_NOMEM); } - DEBUGLEVEL = 0; + if (!DEBUGLEVEL) { + DEBUGLEVEL = 0; + } setup_logging("libnetapi", true); dbf = x_stderr;