The branch, master has been updated
       via  e9f5529 s3: Fix a typed-punned warning
      from  a6af1ef s4-dsdb: cope with broken exchange schema with single 
valued backlinks

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


- Log -----------------------------------------------------------------
commit e9f552925d0c007379d81af6ea9b0973011aed80
Author: Volker Lendecke <v...@samba.org>
Date:   Mon Feb 7 14:43:09 2011 +0100

    s3: Fix a typed-punned warning
    
    Autobuild-User: Volker Lendecke <vlen...@samba.org>
    Autobuild-Date: Mon Feb 14 11:46:50 CET 2011 on sn-devel-104

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

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


Changeset truncated at 500 lines:

diff --git a/source3/nmbd/nmbd_packets.c b/source3/nmbd/nmbd_packets.c
index 48d10cc..5f900c4 100644
--- a/source3/nmbd/nmbd_packets.c
+++ b/source3/nmbd/nmbd_packets.c
@@ -497,7 +497,7 @@ struct response_record *queue_register_name( struct 
subnet_record *subrec,
                return NULL;
 
        in_addr_to_sockaddr_storage(&ss, subrec->bcast_ip);
-       pss = iface_ip((struct sockaddr *)&ss);
+       pss = iface_ip((struct sockaddr *)(void *)&ss);
        if (!pss || pss->ss_family != AF_INET) {
                p->locked = False;
                free_packet(p);


-- 
Samba Shared Repository

Reply via email to