Fixed a bug with recognition of -find test -or_use_pattern

This commit is contained in:
Thomas Schmitt 2014-05-03 08:01:06 +00:00
parent dcd3845fa2
commit 08784a116c
2 changed files with 2 additions and 2 deletions

View File

@ -933,7 +933,7 @@ not_enough_arguments:;
goto not_enough_arguments;
i++;
ret= Findjob_set_arg1(job,
22 + (strcmp(argv[i], "-or_use_pattern") == 0),
22 + (strcmp(argv[i - 1], "-or_use_pattern") == 0),
argv[i], 0);
if(ret <= 0)
goto ex;

View File

@ -1 +1 @@
#define Xorriso_timestamP "2014.05.02.090851"
#define Xorriso_timestamP "2014.05.03.080034"