diff options
author | root <root@localhost.localdomain> | 2014-10-29 19:54:56 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-10-30 09:14:50 +0100 |
commit | e8bd0c0e93b523dbc65be55e2496953a344e11ab (patch) | |
tree | 2b213cffeb85ba8e205a6d17d4444d54d8a86633 | |
parent | d772b98283f289917a6a8370808d4d0912899384 (diff) | |
download | samba-e8bd0c0e93b523dbc65be55e2496953a344e11ab.tar.gz samba-e8bd0c0e93b523dbc65be55e2496953a344e11ab.tar.xz samba-e8bd0c0e93b523dbc65be55e2496953a344e11ab.zip |
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 <rsharpe@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Thu Oct 30 09:14:51 CET 2014 on sn-devel-104
-rw-r--r-- | source3/auth/auth_util.c | 3 |
1 files changed, 3 insertions, 0 deletions
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 */ |