From: Jelmer Vernooij Date: Tue, 25 Mar 2003 13:59:55 +0000 (+0000) Subject: Don't use 'opt' X-Git-Tag: samba-4.0.0alpha6~801^2~11793^2~1538 X-Git-Url: http://git.samba.org/samba.git/?a=commitdiff_plain;h=bdd96341f1116dd67a24447ed672f7235b518c46;p=kamenim%2Fsamba-autobuild%2F.git Don't use 'opt' (This used to be commit 6ab41e50fd0a36ebd9969064aa46235dc687dfba) --- diff --git a/source3/utils/testparm.c b/source3/utils/testparm.c index e8dd3c15b22..e3d6ce02748 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);