From: Ralph Boehme Date: Wed, 3 Feb 2016 07:07:02 +0000 (+0100) Subject: winbindd: log domain name of failures to get trustdoms X-Git-Tag: tdb-1.3.10~1020 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=32c7d0c410abb9e5c51347404a5b71ac56e0b24f;p=thirdparty%2Fsamba.git winbindd: log domain name of failures to get trustdoms Signed-off-by: Ralph Boehme Reviewed-by: Uri Simchoni Reviewed-by: Michael Adam --- diff --git a/source3/winbindd/winbindd_util.c b/source3/winbindd/winbindd_util.c index c32352081e1..f0344b1b26f 100644 --- a/source3/winbindd/winbindd_util.c +++ b/source3/winbindd/winbindd_util.c @@ -348,7 +348,8 @@ static void trustdom_list_done(struct tevent_req *req) res = wb_domain_request_recv(req, state, &response, &err); if ((res == -1) || (response->result != WINBINDD_OK)) { - DBG_WARNING("Could not receive trustdoms\n"); + DBG_WARNING("Could not receive trusts for domain %s\n", + state->domain->name); TALLOC_FREE(state); return; }