sbase

suckless unix tools
git clone git://git.2f30.org/sbase
Log | Files | Refs | README | LICENSE

commit d41095299a9ab35cd0a2dbc9e44a865125e62488
parent deb8a16527b235840fd04787463590ccf5198d07
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Fri,  8 May 2015 22:28:24 +0200

tar: ignore more crazy GNU PAX header crap

don't fail, but maybe we should give a warning for this?

Diffstat:
Mtar.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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; }