diff options
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 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); } |