diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-07-22 14:32:38 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-07-22 14:32:38 +0000 |
commit | 51e5a1a546adf6ba36c7e4c3298c651cff7e15b9 (patch) | |
tree | 0a5cb81150ff310911a3e30c383269ffa966a205 /source/lib/interface.c | |
parent | 9e411f2c9044104df60022da316379bd27e98b56 (diff) | |
download | samba-51e5a1a546adf6ba36c7e4c3298c651cff7e15b9.tar.gz samba-51e5a1a546adf6ba36c7e4c3298c651cff7e15b9.tar.xz samba-51e5a1a546adf6ba36c7e4c3298c651cff7e15b9.zip |
removed the remote interfaces stuff.
Diffstat (limited to 'source/lib/interface.c')
-rw-r--r-- | source/lib/interface.c | 8 |
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"); } |