[SCM] Samba Shared Repository - branch v4-6-test updated

Karolin Seeger kseeger at samba.org
Tue May 16 11:26:03 UTC 2017


The branch, v4-6-test has been updated
       via  3e50a50 ctdb-logging: Initialize DEBUGLEVEL before changing the value
      from  10b04d7 s3:smbcacls add prompt for password

https://git.samba.org/?p=samba.git;a=shortlog;h=v4-6-test


- Log -----------------------------------------------------------------
commit 3e50a507e87d4fff1b84be14176de14e311b919b
Author: Amitay Isaacs <amitay at gmail.com>
Date:   Sat May 6 02:08:50 2017 +1000

    ctdb-logging: Initialize DEBUGLEVEL before changing the value
    
    BUG: https://bugzilla.samba.org/show_bug.cgi?id=12770
    
    DEBUGLEVEL is defined as a const array reference at compile time.
    debug_init() converts that to an allocated array reference at run time.
    Since debug_init() is a static function, initialize DEBUGLEVEL via
    setup_logging().
    
    Signed-off-by: Amitay Isaacs <amitay at gmail.com>
    Reviewed-by: Volker Lendecke <vl at samba.org>
    
    Autobuild-User(master): Volker Lendecke <vl at samba.org>
    Autobuild-Date(master): Mon May  8 00:12:25 CEST 2017 on sn-devel-144
    
    (cherry picked from commit af09a733e953072707cde7df0126652e646970f6)
    
    Autobuild-User(v4-6-test): Karolin Seeger <kseeger at samba.org>
    Autobuild-Date(v4-6-test): Tue May 16 13:25:31 CEST 2017 on sn-devel-144

-----------------------------------------------------------------------

Summary of changes:
 ctdb/common/logging.c | 2 ++
 1 file changed, 2 insertions(+)


Changeset truncated at 500 lines:

diff --git a/ctdb/common/logging.c b/ctdb/common/logging.c
index 8e547c9..e1b8e7f 100644
--- a/ctdb/common/logging.c
+++ b/ctdb/common/logging.c
@@ -501,6 +501,8 @@ int logging_init(TALLOC_CTX *mem_ctx, const char *logging,
 	char *str, *name, *option;
 	int ret, i;
 
+	setup_logging(app_name, DEBUG_STDERR);
+
 	if (debug_level == NULL) {
 		debug_level = getenv("CTDB_DEBUGLEVEL");
 	}


-- 
Samba Shared Repository



More information about the samba-cvs mailing list