From: root Date: Thu, 30 Oct 2014 02:54:56 +0000 (-0700) Subject: Don't drop any error codes just because we think there cannot be any errors we didn... X-Git-Tag: tdb-1.3.2~298 X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=e8bd0c0e93b523dbc65be55e2496953a344e11ab;p=samba.git 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 --- diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c index 2986fb4372f..dbc7d24dc17 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 */