From: xiangjingsi Date: Thu, 8 May 2025 19:53:23 +0000 (+0300) Subject: Fix restoring extended attributes from global PAX headers X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e36d3354c767910b49d7d932b286af39c500e03d;p=thirdparty%2Ftar.git Fix restoring extended attributes from global PAX headers Copyright-paperwork-exempt: Yes --- 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)); } }