09f8953388
Resolves: RHEL-8289 RHEL-20192 RHEL-14216 RHEL-8298 RHEL-8334 RHEL-8270
27 lines
823 B
Diff
27 lines
823 B
Diff
From 4d602fc32a2c7f7575dae4b37f6a0b12f4c09cb4 Mon Sep 17 00:00:00 2001
|
|
From: Ranjith ML <rmadhuso@redhat.com>
|
|
Date: Wed, 24 Jan 2024 14:05:24 +0100
|
|
Subject: [PATCH 03/12] archiving: Fix doubled filename in vgcfgrestore
|
|
|
|
(cherry picked from commit 1c3ae2b678ddae0c1916caca4dbe65049dcea3d7)
|
|
---
|
|
lib/format_text/archive.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/lib/format_text/archive.c b/lib/format_text/archive.c
|
|
index 2e8792a93..388789c0d 100644
|
|
--- a/lib/format_text/archive.c
|
|
+++ b/lib/format_text/archive.c
|
|
@@ -313,7 +313,7 @@ static void _display_archive(struct cmd_context *cmd, const char *dir, struct ar
|
|
}
|
|
|
|
log_print(" ");
|
|
- log_print("File:\t\t%s/%s", path, af->name);
|
|
+ log_print("File:\t\t%s", path);
|
|
tc.path_live = path;
|
|
|
|
fic.type = FMT_INSTANCE_PRIVATE_MDAS;
|
|
--
|
|
2.43.0
|
|
|