winbindd: fix debug message in find_default_route_domain() on a DC
authorStefan Metzmacher <metze@samba.org>
Wed, 31 Jan 2018 07:22:07 +0000 (08:22 +0100)
committerRalph Boehme <slow@samba.org>
Sat, 10 Feb 2018 07:35:16 +0000 (08:35 +0100)
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 <metze@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
source3/winbindd/winbindd_util.c

index 05c963f858fdb846fdb03d547e48d41f1bd4eefc..5f4f905db4c3e1a8ba8f0d06b88c9e97057e7345 100644 (file)
@@ -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;
 }