aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archival/bbunzip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/bbunzip.c b/archival/bbunzip.c
index 87a802209..6244bce85 100644
--- a/archival/bbunzip.c
+++ b/archival/bbunzip.c
@@ -386,7 +386,7 @@ int gunzip_main(int argc UNUSED_PARAM, char **argv)
386 * Normally, "zcat" is just "gunzip -c". 386 * Normally, "zcat" is just "gunzip -c".
387 * But if seamless magic is enabled, then we are much more clever. 387 * But if seamless magic is enabled, then we are much more clever.
388 */ 388 */
389 if (ENABLE_ZCAT && (!ENABLE_GUNZIP || applet_name[1] == 'c')) 389 if (ENABLE_ZCAT && applet_name[1] == 'c')
390 option_mask32 |= BBUNPK_OPT_STDOUT | BBUNPK_SEAMLESS_MAGIC; 390 option_mask32 |= BBUNPK_OPT_STDOUT | BBUNPK_SEAMLESS_MAGIC;
391 391
392 return bbunpack(argv, unpack_gz_stream, make_new_name_gunzip, /*unused:*/ NULL); 392 return bbunpack(argv, unpack_gz_stream, make_new_name_gunzip, /*unused:*/ NULL);