diff options
author | Denis Vlasenko | 2007-10-16 10:47:27 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-10-16 10:47:27 +0000 |
commit | 008eda2c548045b4918ebb2e132940a790a84201 (patch) | |
tree | 4ee703c07ab5159321fb41e5f566138cd8391c54 /archival | |
parent | 2450c450ab8af271521c18b3c5e8e1b3c9041838 (diff) | |
download | busybox-008eda2c548045b4918ebb2e132940a790a84201.zip busybox-008eda2c548045b4918ebb2e132940a790a84201.tar.gz |
bzip2: make -s equivalent to -2 (compatible with standard bzip2)
telnetd: typo fix in comment
Diffstat (limited to 'archival')
-rw-r--r-- | archival/bzip2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/archival/bzip2.c b/archival/bzip2.c index e9a69c4..c750a05 100644 --- a/archival/bzip2.c +++ b/archival/bzip2.c @@ -182,6 +182,7 @@ int bzip2_main(int argc, char **argv) * --best alias for -9 */ + opt_complementary = "s2"; /* -s means -2 (compatibility) */ /* Must match bbunzip's constants OPT_STDOUT, OPT_FORCE! */ opt = getopt32(argv, "cfv" USE_BUNZIP2("d") "123456789qzs" ); #if ENABLE_BUNZIP2 /* bunzip2_main may not be visible... */ |