diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-23 23:20:50 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-23 23:20:50 +0200 |
commit | ce0ac322b4a673e59e6e04467b2ceaf7a9637a68 (patch) | |
tree | 87106198ba01fe704f60feefa360746d3135a0f5 /source3/lib | |
parent | f18296151d1d8774b861ef6bd751b48ef9ee2f92 (diff) | |
download | samba-ce0ac322b4a673e59e6e04467b2ceaf7a9637a68.tar.gz samba-ce0ac322b4a673e59e6e04467b2ceaf7a9637a68.tar.bz2 samba-ce0ac322b4a673e59e6e04467b2ceaf7a9637a68.zip |
Fix prototype for set_sockaddr_port.
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/interface.c b/source3/lib/interface.c index 4536990d28..f533ec92c7 100644 --- a/source3/lib/interface.c +++ b/source3/lib/interface.c @@ -289,7 +289,7 @@ const struct sockaddr_storage *iface_ip(const struct sockaddr *ip) bool iface_local(const struct sockaddr *ip) { - return iface_find(ip, True) ? true : false; + return iface_find(ip, true) ? true : false; } /**************************************************************************** |