[SCM] Samba Shared Repository - branch master updated - release-4-0-0alpha7-1297-g251c220

Volker Lendecke vlendec at samba.org
Tue Apr 28 09:59:02 GMT 2009


The branch, master has been updated
       via  251c220f91681a9e39452eba860d38e73ec719a4 (commit)
      from  d16e40b5ef9add630d027ff92e440c44bfb88ef0 (commit)

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


- Log -----------------------------------------------------------------
commit 251c220f91681a9e39452eba860d38e73ec719a4
Author: Volker Lendecke <vl at samba.org>
Date:   Tue Apr 28 11:57:47 2009 +0200

    Fix a type-punned warning

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

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


Changeset truncated at 500 lines:

diff --git a/source3/libsmb/dsgetdcname.c b/source3/libsmb/dsgetdcname.c
index 1064a63..5606b8e 100644
--- a/source3/libsmb/dsgetdcname.c
+++ b/source3/libsmb/dsgetdcname.c
@@ -656,7 +656,7 @@ static NTSTATUS discover_dc_dns(TALLOC_CTX *mem_ctx,
 		 * back to netbios lookups is that our DNS server doesn't know
 		 * anything about the DC's   -- jerry */
 
-		if (!is_zero_addr((struct sockaddr *)&r->ss)) {
+		if (!is_zero_addr((struct sockaddr *)(void *)&r->ss)) {
 			count++;
 			continue;
 		}


-- 
Samba Shared Repository


More information about the samba-cvs mailing list