Disable CRC32 from Block Headers when --check=none

has been specified.
This commit is contained in:
Lasse Collin 2008-01-08 18:50:30 +02:00
parent a751126dbb
commit faeac7b7ac
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ single_init(thread_data *t)
} else { } else {
lzma_options_stream stream = { lzma_options_stream stream = {
.check = opt_check, .check = opt_check,
.has_crc32 = true, .has_crc32 = opt_check != LZMA_CHECK_NONE,
.uncompressed_size = uncompressed_size, .uncompressed_size = uncompressed_size,
.alignment = 0, .alignment = 0,
}; };