diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2019-10-25 10:30:53 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2019-10-25 10:30:53 +0200 |
commit | e1a7c97ac640701973eea000007fc8b9f9dd7126 (patch) | |
tree | b2a9f7de9686d52c5bdc01cc5a1cdb157c3d22dc | |
parent | be5a505d771a77c640acc35ceaa470c80e62f954 (diff) | |
download | busybox-e1a7c97ac640701973eea000007fc8b9f9dd7126.tar.gz |
tar: fix fallout of: change -a from meaning "lzma" to mean "autodetect by extension"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-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 4f64d2286..4ab38db29 100644 --- a/archival/tar.c +++ b/archival/tar.c @@ -1029,7 +1029,7 @@ int tar_main(int argc UNUSED_PARAM, char **argv) IF_FEATURE_TAR_CREATE("c--tx:t--cx:x--ct") // mutually exclusive IF_NOT_FEATURE_TAR_CREATE("t--x:x--t") // mutually exclusive #if ENABLE_FEATURE_TAR_LONG_OPTIONS - ":\xf9+" // --strip-components=NUM + ":\xf8+" // --strip-components=NUM #endif LONGOPTS , &base_dir // -C dir |