From e36d3354c767910b49d7d932b286af39c500e03d Mon Sep 17 00:00:00 2001 From: xiangjingsi Date: Thu, 8 May 2025 22:53:23 +0300 Subject: [PATCH] Fix restoring extended attributes from global PAX headers Copyright-paperwork-exempt: Yes --- src/xheader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xheader.c b/src/xheader.c index 6b81358f..b940e7f4 100644 --- a/src/xheader.c +++ b/src/xheader.c @@ -670,7 +670,7 @@ run_override_list (struct keyword_list *kp, struct tar_stat_info *st) { struct xhdr_tab const *t = locate_handler (kp->pattern); if (t) - t->decoder (st, t->keyword, kp->value, strlen (kp->value)); + t->decoder (st, kp->pattern, kp->value, strlen (kp->value)); } } -- 2.47.3