commit 1412d07b7d295a11eee37af010f2e5a5fb3a5f39
parent 7fbb858bcd30fa7548668823322b194c44ed329f
Author: sin <sin@2f30.org>
Date: Mon, 26 Jan 2015 16:03:46 +0000
tar: No need to use -f for gzip
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tar.c b/tar.c
@@ -79,7 +79,7 @@ decomp(FILE *fp)
execlp("bzip2", "bzip2", "-cd", (char *)0);
eprintf("execlp bzip2:");
case 'z':
- execlp("gzip", "gzip", "-cdf", (char *)0);
+ execlp("gzip", "gzip", "-cd", (char *)0);
eprintf("execlp gzip:");
break;
}