From 4c1f61cb800da80e2f8844a66ac7fa201f87b8c4 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 18 Aug 2020 09:16:22 +0200 Subject: [PATCH] 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 --- source3/libads/kerberos.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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); -- 2.47.3