[SCM] Samba Shared Repository - branch master updated - release-4-0-0alpha7-2312-gcd99196

Volker Lendecke vlendec at samba.org
Sun Jun 14 18:56:04 GMT 2009


The branch, master has been updated
       via  cd9919643b0261c6a0c75b2551371f4508f37bb0 (commit)
      from  f1dd6cd64dad232801749d7a55b5a66788f98171 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit cd9919643b0261c6a0c75b2551371f4508f37bb0
Author: Volker Lendecke <vl at samba.org>
Date:   Sun Jun 14 20:54:57 2009 +0200

    Fix an error message: We get the errno in "err"

-----------------------------------------------------------------------

Summary of changes:
 source3/winbindd/winbindd_dual.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/winbindd/winbindd_dual.c b/source3/winbindd/winbindd_dual.c
index 0aca790..0ed4706 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;
 	}


-- 
Samba Shared Repository


More information about the samba-cvs mailing list