summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2003-03-25 13:59:55 +0000
committerJelmer Vernooij <jelmer@samba.org>2003-03-25 13:59:55 +0000
commitbdd96341f1116dd67a24447ed672f7235b518c46 (patch)
treef1e17ad5476643f25641c83a1fc71367a743a85c
parentf97934e3f517ecf0e894763c4e1156d3ebd77686 (diff)
downloadsamba-bdd96341f1116dd67a24447ed672f7235b518c46.tar.gz
samba-bdd96341f1116dd67a24447ed672f7235b518c46.tar.bz2
samba-bdd96341f1116dd67a24447ed672f7235b518c46.zip
Don't use 'opt'
(This used to be commit 6ab41e50fd0a36ebd9969064aa46235dc687dfba)
-rw-r--r--source3/utils/testparm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/testparm.c b/source3/utils/testparm.c
index e8dd3c15b2..e3d6ce0274 100644
--- a/source3/utils/testparm.c
+++ b/source3/utils/testparm.c
@@ -213,7 +213,7 @@ via the %%o substitution. With encrypted passwords this is not possible.\n", lp_
POPT_CONTEXT_KEEP_FIRST);
poptSetOtherOptionHelp(pc, "[OPTION...] <config-file> [host-name] [host-ip]");
- while((opt = poptGetNextOpt(pc)) != -1);
+ while(poptGetNextOpt(pc) != -1);
setup_logging(poptGetArg(pc), True);