From: Tim Kientzle Date: Mon, 15 Feb 2010 03:35:17 +0000 (-0500) Subject: "none" is the default compression; there's no need to set it explicitly. X-Git-Tag: v3.0.0a~1259 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c4727c20731915ea2e10b8fc0a372ec28e1294e9;p=thirdparty%2Flibarchive.git "none" is the default compression; there's no need to set it explicitly. SVN-Revision: 1901 --- 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);