diff options
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/namequery.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/libsmb/namequery.c b/source3/libsmb/namequery.c index 7f3d012c30..a578ad8947 100644 --- a/source3/libsmb/namequery.c +++ b/source3/libsmb/namequery.c @@ -552,7 +552,9 @@ BOOL resolve_name(char *name, struct in_addr *return_ip) * the first successful match. */ for( i = 0; i < num_interfaces; i++) { - struct in_addr sendto_ip = *iface_bcast(*iface_n_ip(i)); + struct in_addr sendto_ip; + /* Done this way to fix compiler error on IRIX 5.x */ + sendto_ip = *iface_bcast(*iface_n_ip(i)); iplist = name_query(sock, name, 0x20, True, False, sendto_ip, &count, NULL); if(iplist != NULL) { *return_ip = iplist[0]; |