From 2784a74a03a6fe989e8d09ced028959ed1f2a2fd Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Mon, 13 May 2013 21:47:22 -0500 Subject: [PATCH 1/1] print_image_info(): Print last modification time correctly --- src/xml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xml.c b/src/xml.c index a6e745aa..19cf5f32 100644 --- a/src/xml.c +++ b/src/xml.c @@ -1211,7 +1211,7 @@ print_image_info(const struct wim_info *wim_info, int image) wim_timestamp_to_str(image_info->creation_time, buf, sizeof(buf)); tprintf(T("Creation Time: %"TS"\n"), buf); - wim_timestamp_to_str(image_info->creation_time, buf, sizeof(buf)); + wim_timestamp_to_str(image_info->last_modification_time, buf, sizeof(buf)); tprintf(T("Last Modification Time: %"TS"\n"), buf); if (image_info->windows_info_exists) print_windows_info(&image_info->windows_info); -- 2.43.0