commit | 8833a51781f4659045b37017f6e2239cf64fc36b | [log] [tgz] |
---|---|---|
author | Glenn L McGrath <bug1@ihug.co.nz> | Wed Feb 13 03:32:11 2002 +0000 |
committer | Glenn L McGrath <bug1@ihug.co.nz> | Wed Feb 13 03:32:11 2002 +0000 |
tree | e27524690e3946bab8ac72862623ed87038c1332 | |
parent | 9bd49d6a22a31bd3b5e3e3dcaacdb8a019630506 [diff] [blame] |
Fix condition that prevented creation of compressed files
diff --git a/archival/tar.c b/archival/tar.c index b640604..7662f4b 100644 --- a/archival/tar.c +++ b/archival/tar.c
@@ -714,7 +714,7 @@ int verboseFlag = FALSE; #ifdef CONFIG_FEATURE_TAR_GZIP - if (untar_funct && untar_unzip) { + if (untar_funct & untar_unzip) { error_msg_and_die("Creation of compressed tarfile not internally support by tar, pipe to busybox gunzip"); } #endif // CONFIG_FEATURE_TAR_GZIP