summaryrefslogtreecommitdiff
path: root/source/lib/interface.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1996-07-22 14:32:38 +0000
committerAndrew Tridgell <tridge@samba.org>1996-07-22 14:32:38 +0000
commit51e5a1a546adf6ba36c7e4c3298c651cff7e15b9 (patch)
tree0a5cb81150ff310911a3e30c383269ffa966a205 /source/lib/interface.c
parent9e411f2c9044104df60022da316379bd27e98b56 (diff)
downloadsamba-51e5a1a546adf6ba36c7e4c3298c651cff7e15b9.tar.gz
removed the remote interfaces stuff.
Diffstat (limited to 'source/lib/interface.c')
-rw-r--r--source/lib/interface.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/source/lib/interface.c b/source/lib/interface.c
index 40fcdfa6e21..3a532140b39 100644
--- a/source/lib/interface.c
+++ b/source/lib/interface.c
@@ -33,7 +33,6 @@ static BOOL got_bcast=False;
static BOOL got_nmask=False;
struct interface *local_interfaces = NULL;
-struct interface *remote_interfaces = NULL;
struct interface *last_iface;
@@ -349,12 +348,7 @@ load the remote and local interfaces
void load_interfaces(void)
{
/* add the machine's interfaces to local interface structure*/
- interpret_interfaces(lp_interfaces (), &local_interfaces,
- "interface");
-
- /* add all subnets to remote interfaces structure */
- interpret_interfaces(lp_remote_interfaces(), &remote_interfaces,
- "remote subnet");
+ interpret_interfaces(lp_interfaces(), &local_interfaces,"interface");
}