From 32c7d0c410abb9e5c51347404a5b71ac56e0b24f Mon Sep 17 00:00:00 2001 From: Ralph Boehme Date: Wed, 3 Feb 2016 08:07:02 +0100 Subject: [PATCH] winbindd: log domain name of failures to get trustdoms Signed-off-by: Ralph Boehme Reviewed-by: Uri Simchoni Reviewed-by: Michael Adam --- source3/winbindd/winbindd_util.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; } -- 2.34.1