Description:
------------
When a Plugin generates an OFFSET stream and the FileSet uses
data compression, a Verify job (level=data) did not handle
correctly the offset header in the data stream, resulting
the following kind of message:
Error: Compressed header version error. Got=0x4f58 want=0x1
if (vctx.stream == STREAM_SPARSE_DATA
|| vctx.stream == STREAM_SPARSE_COMPRESSED_DATA
- || vctx.stream == STREAM_SPARSE_GZIP_DATA) {
+ || vctx.stream == STREAM_SPARSE_GZIP_DATA
+ || vctx.full_stream & STREAM_BIT_OFFSETS) {
vctx.skip_sparse_header(&wbuf, &wsize);
}