diff options
author | Yann Collet <cyan@fb.com> | 2017-08-12 00:58:46 (GMT) |
---|---|---|
committer | Yann Collet <cyan@fb.com> | 2017-08-12 00:58:46 (GMT) |
commit | 930a6921103c3ae4e62c99f86fd5329ef957900f (patch) | |
tree | f94f33e901d7eb56699d44bdfb91a08157aa8b50 /programs/lz4cli.c | |
parent | 77f99d2922a82bd3187dd7086a8b9dee06bbaed6 (diff) | |
download | lz4-930a6921103c3ae4e62c99f86fd5329ef957900f.zip lz4-930a6921103c3ae4e62c99f86fd5329ef957900f.tar.gz lz4-930a6921103c3ae4e62c99f86fd5329ef957900f.tar.bz2 |
cli : restored command -BX to enable block checksum (#322)
Diffstat (limited to 'programs/lz4cli.c')
-rw-r--r-- | programs/lz4cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/lz4cli.c b/programs/lz4cli.c index 55f3133..dede834 100644 --- a/programs/lz4cli.c +++ b/programs/lz4cli.c @@ -144,7 +144,7 @@ static int usage_advanced(const char* exeName) DISPLAY( " -l : compress using Legacy format (Linux kernel compression)\n"); DISPLAY( " -B# : Block size [4-7] (default : 7) \n"); DISPLAY( " -BD : Block dependency (improve compression ratio) \n"); - /* DISPLAY( " -BX : enable block checksum (default:disabled)\n"); *//* Option currently inactive */ + DISPLAY( " -BX : enable block checksum (default:disabled) \n"); DISPLAY( "--no-frame-crc : disable stream checksum (default:enabled) \n"); DISPLAY( "--content-size : compressed frame includes original size (default:not present)\n"); DISPLAY( "--[no-]sparse : sparse mode (default:enabled on file, disabled on stdout)\n"); |