Corrected an error message which has undesired effects with fronetnds

This commit is contained in:
Thomas Schmitt 2013-01-06 17:19:48 +00:00
parent f962ef831c
commit 96b599470b
2 changed files with 4 additions and 2 deletions

View File

@ -764,7 +764,9 @@ int Xorriso_warn_of_wildcards(struct XorrisO *xorriso, char *path, int flag)
(flag&2) ? "-disk_pattern or -pathspecs" : "-iso_rr_pattern");
}
Xorriso_msgs_submit(xorriso, 0, xorriso->info_text, 0, "WARNING", 0);
sprintf(xorriso->info_text,"Pattern seen: %s\n", path);
sprintf(xorriso->info_text,"Pattern seen: ");
Text_shellsafe(path, xorriso->info_text, 1);
strcat(xorriso->info_text, "\n");
Xorriso_msgs_submit(xorriso, 0, xorriso->info_text, 0, "WARNING", 0);
return(1);
}

View File

@ -1 +1 @@
#define Xorriso_timestamP "2013.01.06.154027"
#define Xorriso_timestamP "2013.01.06.171902"