rust-brotli icon indicating copy to clipboard operation
rust-brotli copied to clipboard

No --appendable code exists inside brotli.c

Open gitcnd opened this issue 4 years ago • 0 comments

Doc says "Additionally the CATABLE and APPENDABLE options are exposed..." except only the option --catable is exists in the brotli.c file - no "appendable". (also, note, appendable is spelled wrongly, apendable, in some places)

Also, it says "Specifically CATABLE files can be concatenated in any order" ... however - this test simply omits anything appended:

ls | ./brotli_tool --catable > outac.br ; pwd | ./brotli_tool --catable >> outac.br ; cat outac.br | ./decompressor | tail

(and, for what it's worth, "cat outac.br | brotli -d" reports "corrupt input [con]")

gitcnd avatar Apr 21 '21 07:04 gitcnd