mirror of
https://github.com/samba-team/samba.git
synced 2025-08-07 09:49:30 +03:00
r22155: Fixed warning #4498 from jason@ncac.gwu.edu.
Jeremy.
(This used to be commit f1b22c9527
)
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
4e0a6bd9a7
commit
e5428ef189
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user