diff options
author | Jeremy Allison <jra@samba.org> | 2007-04-10 18:21:37 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:19:17 -0500 |
commit | e5428ef1895928366aeaf84eed7a83c5fc5384ce (patch) | |
tree | 3b369e397a62f01f06a452e4e5fa0b2995584d6e /source3/client | |
parent | 4e0a6bd9a7a66989dc53d2682c06451afb32199e (diff) | |
download | samba-e5428ef1895928366aeaf84eed7a83c5fc5384ce.tar.gz samba-e5428ef1895928366aeaf84eed7a83c5fc5384ce.tar.xz samba-e5428ef1895928366aeaf84eed7a83c5fc5384ce.zip |
r22155: Fixed warning #4498 from jason@ncac.gwu.edu.
Jeremy.
(This used to be commit f1b22c952719f004d7e33813c4d0f10514e1fff9)
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 49c94eb56be..a4c75f2735e 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); } |