From b112cbc2462edf810473026c133b0802d1e18468 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 31 Jan 2018 08:22:07 +0100 Subject: [PATCH] winbindd: fix debug message in find_default_route_domain() on a DC As we don't support multiple domains in a forest yet, we don't need to print a warning a log level 0. This also adds a missing \n. Bug: https://bugzilla.samba.org/show_bug.cgi?id=13255 Signed-off-by: Stefan Metzmacher Reviewed-by: Ralph Boehme --- source3/winbindd/winbindd_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/winbindd/winbindd_util.c b/source3/winbindd/winbindd_util.c index 05c963f858f..5f4f905db4c 100644 --- a/source3/winbindd/winbindd_util.c +++ b/source3/winbindd/winbindd_util.c @@ -1426,7 +1426,7 @@ struct winbindd_domain *find_default_route_domain(void) if (!IS_DC) { return find_our_domain(); } - DBG_ERR("Routing logic not yet implemented on a DC"); + DBG_DEBUG("Routing logic not yet implemented on a DC\n"); return NULL; } -- 2.34.1