diff options
author | Samba Release Account <samba-bugs@samba.org> | 1997-07-11 00:54:45 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1997-07-11 00:54:45 +0000 |
commit | 792771ecc954892e85f7715136a4d70221f90d85 (patch) | |
tree | bc4954821dfe2dc1f93671b69b44bf2f3eaef074 /source3/lib | |
parent | 0378cd5a8c42b99007ec54ac8a65bf21b9c9bfac (diff) | |
download | samba-792771ecc954892e85f7715136a4d70221f90d85.tar.gz samba-792771ecc954892e85f7715136a4d70221f90d85.tar.bz2 samba-792771ecc954892e85f7715136a4d70221f90d85.zip |
interface.c: Fix for AIX4.x finding interfaces.
server.c: Subtle fix for filenames containing ':'.
Jeremy (jallison@whistle.com)
(This used to be commit ee9f57bab25e5ee07fb2d384b8c416576401a6ab)
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 444d511426..940af1eccf 100644 --- a/source3/lib/interface.c +++ b/source3/lib/interface.c @@ -154,7 +154,7 @@ static void get_broadcast(struct in_addr *if_ipaddr, } } } -#elif defined(__FreeBSD__) || defined(NETBSD) || defined(AMIGA) +#elif defined(__FreeBSD__) || defined(NETBSD) || defined(AMIGA) || defined(_AIX41) ifc.ifc_len = sizeof(buff); ifc.ifc_buf = buff; if (ioctl(sock, SIOCGIFCONF, &ifc) < 0) { |