From: Stefan Metzmacher Date: Wed, 31 Jan 2018 07:22:07 +0000 (+0100) Subject: winbindd: fix debug message in find_default_route_domain() on a DC X-Git-Tag: tevent-0.9.36~160 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b112cbc2462edf810473026c133b0802d1e18468;p=thirdparty%2Fsamba.git 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 --- 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; }