diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-05-12 12:27:01 +0200 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-06-06 12:26:09 +1000 |
commit | a527b96c968037db2d699493a9017709d053f95a (patch) | |
tree | 0931ed4803122c468e4cc38c28dc0d49ce07a162 /source4/lib/socket | |
parent | 62af4a3798995b0368625c0322bc9d5373bb0348 (diff) | |
download | samba-a527b96c968037db2d699493a9017709d053f95a.tar.gz samba-a527b96c968037db2d699493a9017709d053f95a.tar.bz2 samba-a527b96c968037db2d699493a9017709d053f95a.zip |
s4-ipv6: fixed a warning
Diffstat (limited to 'source4/lib/socket')
-rw-r--r-- | source4/lib/socket/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/socket/interface.c b/source4/lib/socket/interface.c index 9ae658da3e..0de44c1517 100644 --- a/source4/lib/socket/interface.c +++ b/source4/lib/socket/interface.c @@ -302,7 +302,7 @@ void load_interface_list(TALLOC_CTX *mem_ctx, const char **interfaces, struct in DEBUG(0,("ERROR: Could not determine network interfaces, you must use a interfaces config line\n")); } for (i=0;i<total_probed;i++) { - if (!is_loopback_addr(&ifaces[i].ip)) { + if (!is_loopback_addr((struct sockaddr *)&ifaces[i].ip)) { add_interface(mem_ctx, &ifaces[i], local_interfaces); } } |