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 | 234b8c602209d966c5b82148b521d9711e08c4b3 (patch) | |
tree | 7e42d2e738a9dc9a7a060083713d94e8ddce1c7f /source3/lib | |
parent | 1c2ab212d96bbd642fd230b117c9940dae5e3767 (diff) | |
download | samba-234b8c602209d966c5b82148b521d9711e08c4b3.tar.gz samba-234b8c602209d966c5b82148b521d9711e08c4b3.tar.bz2 samba-234b8c602209d966c5b82148b521d9711e08c4b3.zip |
removed the remote interfaces stuff.
(This used to be commit 51e5a1a546adf6ba36c7e4c3298c651cff7e15b9)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/interface.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/source3/lib/interface.c b/source3/lib/interface.c index 40fcdfa6e2..3a532140b3 100644 --- a/source3/lib/interface.c +++ b/source3/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"); } |