From 96b599470bc043ef1fc9977a7b0b4c5bcd1219c6 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Sun, 6 Jan 2013 17:19:48 +0000 Subject: [PATCH] Corrected an error message which has undesired effects with fronetnds --- xorriso/match.c | 4 +++- xorriso/xorriso_timestamp.h | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/xorriso/match.c b/xorriso/match.c index 469a06be..aeae06f0 100644 --- a/xorriso/match.c +++ b/xorriso/match.c @@ -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); } diff --git a/xorriso/xorriso_timestamp.h b/xorriso/xorriso_timestamp.h index 66d39869..88781a5b 100644 --- a/xorriso/xorriso_timestamp.h +++ b/xorriso/xorriso_timestamp.h @@ -1 +1 @@ -#define Xorriso_timestamP "2013.01.06.154027" +#define Xorriso_timestamP "2013.01.06.171902"