From: Volker Lendecke Date: Tue, 18 Aug 2020 07:16:22 +0000 (+0200) Subject: libads: Improve a debug message X-Git-Tag: talloc-2.3.2~323 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4c1f61cb800da80e2f8844a66ac7fa201f87b8c4;p=thirdparty%2Fsamba.git libads: Improve a debug message "kdc_ip_string" is a multi-line string starting with a tab. It looks better in the debug message when starting in a new line. Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source3/libads/kerberos.c b/source3/libads/kerberos.c index 52a5ac9b5e6..75beeef4a44 100644 --- a/source3/libads/kerberos.c +++ b/source3/libads/kerberos.c @@ -824,9 +824,8 @@ bool create_local_private_krb5_conf_for_domain(const char *realm, goto done; } - DEBUG(5,("create_local_private_krb5_conf_for_domain: wrote " - "file %s with realm %s KDC list = %s\n", - fname, realm_upper, kdc_ip_string)); + DBG_INFO("wrote file %s with realm %s KDC list:\n%s\n", + fname, realm_upper, kdc_ip_string); /* Set the environment variable to this file. */ setenv("KRB5_CONFIG", fname, 1);