From cafdc7c6561f546578e5d7c842149fa242937a42 Mon Sep 17 00:00:00 2001 From: Elie Le Vaillant Date: Fri, 6 Dec 2024 10:37:41 +0100 Subject: [PATCH] tar: force decompression decomp() needs the force flag -f too. --- tar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tar.c b/tar.c index dd4fc19..e4701dc 100644 --- a/tar.c +++ b/tar.c @@ -614,7 +614,7 @@ main(int argc, char *argv[]) if (filtertool) { fd = tarfd; - tarfd = decomp(tarfd, filtertool, "-cd"); + tarfd = decomp(tarfd, filtertool, "-cdf"); close(fd); }