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-4.0.0alpha6~801^2~3573^2~109 X-Git-Url: http://git.samba.org/?p=samba.git;a=commitdiff_plain;h=77a25318105d90ae34a05c8a1e71df84343bb28e Only set DEBUGLEVEL to 0 in libnetapi when not set already. Guenther (This used to be commit 3ace1601ac5b5d87d6bfd8aa0afe0c75858b6990) --- diff --git a/source3/lib/netapi/netapi.c b/source3/lib/netapi/netapi.c index 47b3ba93cf6..fb091f6e0b2 100644 --- a/source3/lib/netapi/netapi.c +++ b/source3/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;