1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-24 02:04:21 +03:00

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 <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke 2020-08-18 09:16:22 +02:00 committed by Jeremy Allison
parent f02e76d023
commit 4c1f61cb80

View File

@ -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);