diff options
author | Günther Deschner <gd@samba.org> | 2008-11-01 00:00:03 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-11-01 01:41:21 +0100 |
commit | bb6681ef9d9ae0e1000ebded56bdb2d14c5c795b (patch) | |
tree | ebfaf1e8cd05394fffa235a4fb82db25aada27ab /source3 | |
parent | 84cc8f5d111ca4788ea38633c5b9704d49332878 (diff) | |
download | samba-bb6681ef9d9ae0e1000ebded56bdb2d14c5c795b.tar.gz samba-bb6681ef9d9ae0e1000ebded56bdb2d14c5c795b.tar.bz2 samba-bb6681ef9d9ae0e1000ebded56bdb2d14c5c795b.zip |
s3-net: fix build warning.
Jeremy, please check.
Guenther
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/net_dns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_dns.c b/source3/utils/net_dns.c index 4e617a1968..f4ad6f7b47 100644 --- a/source3/utils/net_dns.c +++ b/source3/utils/net_dns.c @@ -169,7 +169,7 @@ int get_my_ip_address( struct sockaddr_storage **pp_ss ) continue; /* Don't register loopback addresses */ - if (is_loopback_addr(nic_sa_storage)) { + if (is_loopback_addr((struct sockaddr *)nic_sa_storage)) { continue; } |