From: Volker Lendecke Date: Sun, 14 Jun 2009 18:54:57 +0000 (+0200) Subject: Fix an error message: We get the errno in "err" X-Git-Tag: tdb-1.1.5~15 X-Git-Url: http://git.samba.org/samba.git/?p=ira%2Fwip.git;a=commitdiff_plain;h=cd9919643b0261c6a0c75b2551371f4508f37bb0 Fix an error message: We get the errno in "err" --- diff --git a/source3/winbindd/winbindd_dual.c b/source3/winbindd/winbindd_dual.c index 0aca790a041..0ed4706f398 100644 --- a/source3/winbindd/winbindd_dual.c +++ b/source3/winbindd/winbindd_dual.c @@ -504,7 +504,7 @@ static void async_domain_request_done(struct tevent_req *req) ret = wb_domain_request_recv(req, state, &response, &err); TALLOC_FREE(req); if (ret == -1) { - DEBUG(5, ("wb_domain_request returned %s\n", strerror(errno))); + DEBUG(5, ("wb_domain_request returned %s\n", strerror(err))); state->continuation(state->private_data_data, false); return; }