From e5428ef1895928366aeaf84eed7a83c5fc5384ce Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 10 Apr 2007 18:21:37 +0000 Subject: r22155: Fixed warning #4498 from jason@ncac.gwu.edu. Jeremy. (This used to be commit f1b22c952719f004d7e33813c4d0f10514e1fff9) --- source3/client/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/client') diff --git a/source3/client/client.c b/source3/client/client.c index 49c94eb56b..a4c75f2735 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -4020,13 +4020,13 @@ static int do_message_op(void) /* We must use old option processing for this. Find the * position of the -T option in the raw argv[]. */ { - int i, optnum; + int i; for (i = 1; i < argc; i++) { if (strncmp("-T", argv[i],2)==0) break; } i++; - if (!(optnum = tar_parseargs(argc, argv, poptGetOptArg(pc), i))) { + if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) { poptPrintUsage(pc, stderr, 0); exit(1); } -- cgit