From bdd96341f1116dd67a24447ed672f7235b518c46 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 25 Mar 2003 13:59:55 +0000 Subject: Don't use 'opt' (This used to be commit 6ab41e50fd0a36ebd9969064aa46235dc687dfba) --- source3/utils/testparm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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...] [host-name] [host-ip]"); - while((opt = poptGetNextOpt(pc)) != -1); + while(poptGetNextOpt(pc) != -1); setup_logging(poptGetArg(pc), True); -- cgit