summaryrefslogtreecommitdiff
path: root/source3/utils/testparm.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-05-05 17:44:00 +0200
committerVolker Lendecke <vl@samba.org>2010-05-05 18:07:45 +0200
commit5a56bc948ecf740591e898cdb45f0f0c2b0a4c84 (patch)
tree71925ffb712e35559125ae8b050c992332493319 /source3/utils/testparm.c
parent3f0562f4b4cfe770baf2e529a445404a7b8f1141 (diff)
downloadsamba-5a56bc948ecf740591e898cdb45f0f0c2b0a4c84.tar.gz
samba-5a56bc948ecf740591e898cdb45f0f0c2b0a4c84.tar.bz2
samba-5a56bc948ecf740591e898cdb45f0f0c2b0a4c84.zip
s3: Fix bug 5972 -- remove -L testparm parameter
Thanks to TAKAHASHI Motonobu <monyo@samba.gr.jp> to point out that this does not work and to agree it's not worth fixing :-)
Diffstat (limited to 'source3/utils/testparm.c')
-rw-r--r--source3/utils/testparm.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/source3/utils/testparm.c b/source3/utils/testparm.c
index 73e173e209..8ce0d58ce9 100644
--- a/source3/utils/testparm.c
+++ b/source3/utils/testparm.c
@@ -325,7 +325,6 @@ rameter is ignored when using CUPS libraries.\n",
poptContext pc;
static char *parameter_name = NULL;
static const char *section_name = NULL;
- static char *new_local_machine = NULL;
const char *cname;
const char *caddr;
static int show_defaults;
@@ -335,7 +334,6 @@ rameter is ignored when using CUPS libraries.\n",
POPT_AUTOHELP
{"suppress-prompt", 's', POPT_ARG_VAL, &silent_mode, 1, "Suppress prompt for enter"},
{"verbose", 'v', POPT_ARG_NONE, &show_defaults, 1, "Show default options too"},
- {"server", 'L',POPT_ARG_STRING, &new_local_machine, 0, "Set %%L macro to servername\n"},
{"skip-logic-checks", 'l', POPT_ARG_NONE, &skip_logic_checks, 1, "Skip the global checks"},
{"show-all-parameters", '\0', POPT_ARG_VAL, &show_all_parameters, True, "Show the parameters, type, possible values" },
{"parameter-name", '\0', POPT_ARG_STRING, &parameter_name, 0, "Limit testparm to a named parameter" },
@@ -382,10 +380,6 @@ rameter is ignored when using CUPS libraries.\n",
goto done;
}
- if (new_local_machine) {
- set_local_machine_name(new_local_machine, True);
- }
-
dbf = x_stderr;
/* Don't let the debuglevel be changed by smb.conf. */
AllowDebugChange = False;