From e8bd0c0e93b523dbc65be55e2496953a344e11ab Mon Sep 17 00:00:00 2001 From: root Date: Wed, 29 Oct 2014 19:54:56 -0700 Subject: Don't drop any error codes just because we think there cannot be any errors we didn't think of if the user asked for a level 10 log. Signed-off-by: Richard Sharpe Reviewed-by: Jeremy Allison Autobuild-User(master): Jeremy Allison Autobuild-Date(master): Thu Oct 30 09:14:51 CET 2014 on sn-devel-104 --- source3/auth/auth_util.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c index 2986fb4372..dbc7d24dc1 100644 --- a/source3/auth/auth_util.c +++ b/source3/auth/auth_util.c @@ -1521,6 +1521,9 @@ bool is_trusted_domain(const char* dom_name) return false; } + DEBUG(10, ("wb_is_trusted_domain returned error: %s\n", + wbcErrorString(result))); + /* The only other possible result is that winbind is not up and running. We need to update the trustdom_cache ourselves */ -- cgit