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/param | |
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/param')
-rw-r--r-- | source3/param/loadparm.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 48b9d062e8..f4aaa16e6a 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -129,7 +129,6 @@ typedef struct char *szSmbrun; char *szWINSserver; char *szInterfaces; - char *szRemoteInterfaces; int max_log_size; int mangled_stack; int max_xmit; @@ -367,7 +366,6 @@ struct parm_struct {"null passwords", P_BOOL, P_GLOBAL, &Globals.bNullPasswords, NULL}, {"strip dot", P_BOOL, P_GLOBAL, &Globals.bStripDot, NULL}, {"interfaces", P_STRING, P_GLOBAL, &Globals.szInterfaces, NULL}, - {"remote interfaces",P_STRING, P_GLOBAL, &Globals.szRemoteInterfaces,NULL}, {"password server", P_STRING, P_GLOBAL, &Globals.szPasswordServer, NULL}, {"socket options", P_GSTRING, P_GLOBAL, user_socket_options, NULL}, {"smbrun", P_STRING, P_GLOBAL, &Globals.szSmbrun, NULL}, @@ -706,7 +704,6 @@ FN_GLOBAL_STRING(lp_character_set,&Globals.szCharacterSet) FN_GLOBAL_STRING(lp_logon_script,&Globals.szLogonScript) FN_GLOBAL_STRING(lp_wins_server,&Globals.szWINSserver) FN_GLOBAL_STRING(lp_interfaces,&Globals.szInterfaces) -FN_GLOBAL_STRING(lp_remote_interfaces,&Globals.szRemoteInterfaces) FN_GLOBAL_BOOL(lp_wins_support,&Globals.bWINSsupport) FN_GLOBAL_BOOL(lp_wins_proxy,&Globals.bWINSproxy) |