1
0
Fork 0

Merging upstream version 1.0.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-24 05:42:37 +01:00
parent 997ce2ad42
commit 34b309ae87
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
16 changed files with 84 additions and 79 deletions

View file

@ -30,7 +30,7 @@ const char * const simple_extensions[num_formats] =
const char * const decompressor_names[num_formats] =
{ "bzip2", "gzip", "lzip", "xz" };
const int8_t format_order[num_formats] =
{ fmt_gz, fmt_lz, fmt_bz2, fmt_xz }; // search order
{ fmt_lz, fmt_bz2, fmt_gz, fmt_xz }; // search order
// first magic byte must be different among formats
enum { bzip2_magic_size = 3,