summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-06-14 20:54:57 +0200
committerVolker Lendecke <vl@samba.org>2009-06-14 20:55:25 +0200
commitcd9919643b0261c6a0c75b2551371f4508f37bb0 (patch)
tree6d8d77c42d6b50f23460f8dbb6b9f4903ecfcc78 /source3
parentf1dd6cd64dad232801749d7a55b5a66788f98171 (diff)
downloadsamba-cd9919643b0261c6a0c75b2551371f4508f37bb0.tar.gz
Fix an error message: We get the errno in "err"
Diffstat (limited to 'source3')
-rw-r--r--source3/winbindd/winbindd_dual.c2
1 files changed, 1 insertions, 1 deletions
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;
}