From 5583a1c7f006470234c559dc56720c541936bbba Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Sun, 1 Sep 2024 09:20:29 +0200 Subject: [PATCH] Bug fix: -extract_boot_images reports "No such file or directory" when complaining over an existing target file --- xorriso/read_run.c | 2 +- xorriso/xorriso_timestamp.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xorriso/read_run.c b/xorriso/read_run.c index 26d261ec..6fdc70c4 100644 --- a/xorriso/read_run.c +++ b/xorriso/read_run.c @@ -2934,7 +2934,7 @@ int Xorriso_extract_boot_images(struct XorrisO *xorriso, char *disk_dir_path, sprintf(xorriso->info_text, "-extract_boot_images: File already exists on disk: "); Text_shellsafe(eff_path, xorriso->info_text, 1); - Xorriso_msgs_submit(xorriso, 0, xorriso->info_text, errno, "FAILURE", 0); + Xorriso_msgs_submit(xorriso, 0, xorriso->info_text, 0, "FAILURE", 0); continue; } ret= Xorriso_read_file_data(xorriso, NULL, NULL, eff_path, diff --git a/xorriso/xorriso_timestamp.h b/xorriso/xorriso_timestamp.h index a5c99044..817cd3f4 100644 --- a/xorriso/xorriso_timestamp.h +++ b/xorriso/xorriso_timestamp.h @@ -1 +1 @@ -#define Xorriso_timestamP "2024.08.30.222518" +#define Xorriso_timestamP "2024.09.01.071910"