diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-02-13 03:32:11 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-02-13 03:32:11 +0000 |
commit | 963435c3f476ec2de74f3e4db0ae2fcb836b9a7c (patch) | |
tree | e27524690e3946bab8ac72862623ed87038c1332 | |
parent | 046683f4f723c5e94b4886134ba2193defaf476c (diff) | |
download | busybox-w32-963435c3f476ec2de74f3e4db0ae2fcb836b9a7c.tar.gz busybox-w32-963435c3f476ec2de74f3e4db0ae2fcb836b9a7c.tar.bz2 busybox-w32-963435c3f476ec2de74f3e4db0ae2fcb836b9a7c.zip |
Fix condition that prevented creation of compressed files
git-svn-id: svn://busybox.net/trunk/busybox@4202 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | archival/tar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/tar.c b/archival/tar.c index b64060402..7662f4baa 100644 --- a/archival/tar.c +++ b/archival/tar.c | |||
@@ -714,7 +714,7 @@ int tar_main(int argc, char **argv) | |||
714 | int verboseFlag = FALSE; | 714 | int verboseFlag = FALSE; |
715 | 715 | ||
716 | #ifdef CONFIG_FEATURE_TAR_GZIP | 716 | #ifdef CONFIG_FEATURE_TAR_GZIP |
717 | if (untar_funct && untar_unzip) { | 717 | if (untar_funct & untar_unzip) { |
718 | error_msg_and_die("Creation of compressed tarfile not internally support by tar, pipe to busybox gunzip"); | 718 | error_msg_and_die("Creation of compressed tarfile not internally support by tar, pipe to busybox gunzip"); |
719 | } | 719 | } |
720 | #endif // CONFIG_FEATURE_TAR_GZIP | 720 | #endif // CONFIG_FEATURE_TAR_GZIP |