From d41095299a9ab35cd0a2dbc9e44a865125e62488 Mon Sep 17 00:00:00 2001 From: Hiltjo Posthuma Date: Fri, 8 May 2015 22:28:24 +0200 Subject: [PATCH] tar: ignore more crazy GNU PAX header crap don't fail, but maybe we should give a warning for this? --- tar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tar.c b/tar.c index 8c432d1..01043ee 100644 --- a/tar.c +++ b/tar.c @@ -458,7 +458,7 @@ xt(int argc, char *argv[], int mode) } /* ignore global pax header craziness */ - if (h->type == 'g') { + if (h->type == 'g' || h->type == 'x') { skipblk(size); continue; }