From c4727c20731915ea2e10b8fc0a372ec28e1294e9 Mon Sep 17 00:00:00 2001 From: Tim Kientzle Date: Sun, 14 Feb 2010 22:35:17 -0500 Subject: [PATCH] "none" is the default compression; there's no need to set it explicitly. SVN-Revision: 1901 --- tar/write.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tar/write.c b/tar/write.c index 35bb39831..1e8e6baaa 100644 --- a/tar/write.c +++ b/tar/write.c @@ -212,7 +212,7 @@ tar_mode_c(struct bsdtar *bsdtar) } else { switch (bsdtar->create_compression) { case 0: - r = archive_write_set_compression_none(a); + r = ARCHIVE_OK; break; case 'j': case 'y': r = archive_write_set_compression_bzip2(a); -- 2.47.3