Bug fix: -pathspecs "on" did not properly handle "\\="

This commit is contained in:
2015-12-09 16:23:12 +00:00
parent 1578290202
commit 81fcf5fe6a
4 changed files with 8 additions and 9 deletions

View File

@ -146,7 +146,8 @@ int Xorriso_option_add(struct XorrisO *xorriso, int argc, char **argv,
strcpy(source, optv[i]);
split= 0;
if(xorriso->allow_graft_points) {
ret= Fileliste__target_source_limit(target, '=', &ept, 0);
ret= Fileliste__target_source_limit(target, '=', &ept,
!(xorriso->allow_graft_points & 2));
if(ret>0) {
*ept= 0;
strcpy(source, ept+1);