From 4234319cff5898dbd781f4eca8172661a064774a Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Tue, 25 Aug 2009 19:11:29 +0000 Subject: [PATCH] More timely report of library messages with -check_md5 --- xorriso/xorriso_timestamp.h | 2 +- xorriso/xorrisoburn.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/xorriso/xorriso_timestamp.h b/xorriso/xorriso_timestamp.h index 4c933de5..37cc5ee7 100644 --- a/xorriso/xorriso_timestamp.h +++ b/xorriso/xorriso_timestamp.h @@ -1 +1 @@ -#define Xorriso_timestamP "2009.08.24.183750" +#define Xorriso_timestamP "2009.08.25.191217" diff --git a/xorriso/xorrisoburn.c b/xorriso/xorrisoburn.c index b2a1a505..f119e9a7 100644 --- a/xorriso/xorrisoburn.c +++ b/xorriso/xorrisoburn.c @@ -12401,6 +12401,7 @@ int Xorriso_check_md5(struct XorrisO *xorriso, void *in_node, char *path, goto ex; /* Report outcome */ + Xorriso_process_msg_queues(xorriso,0); if(! iso_md5_match(node_md5, data_md5)) { sprintf(xorriso->result_line, "MD5 MISMATCH: "); Text_shellsafe(path, xorriso->result_line, 1); @@ -12418,6 +12419,7 @@ int Xorriso_check_md5(struct XorrisO *xorriso, void *in_node, char *path, } ex:; + Xorriso_process_msg_queues(xorriso,0); Xorriso_iso_file_close(xorriso, &stream, 0); if(ctx != NULL) iso_md5_end(&ctx, data_md5);