diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-05-04 20:47:39 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-05-04 22:22:48 +0200 |
commit | 7070857b47373dafc1ab93fadec79243da589a1a (patch) | |
tree | 760817fb41a74984a499bc88d5ae84d4a0a4ebb8 /lib/comp/internal.h | |
parent | 2b975a449c17268f943403176a7609079b7af084 (diff) |
Rename lzma compressor to xz, zlib compressor to gzip
Stick to the terminology that SquashFS uses. SquashFS uses "lzma" to
refere to lzma1, "xz" to refere to lzma2 and confusingly "gzip" to
refere to raw zlib deflate. We can avoid a lot of confusion by
_consistently_ using the same terminology.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/comp/internal.h')
-rw-r--r-- | lib/comp/internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/comp/internal.h b/lib/comp/internal.h index 17fffe1..d1cf1f2 100644 --- a/lib/comp/internal.h +++ b/lib/comp/internal.h @@ -4,8 +4,8 @@ #include "compress.h" -compressor_t *create_lzma_compressor(bool compress, size_t block_size); +compressor_t *create_xz_compressor(bool compress, size_t block_size); -compressor_t *create_zlib_compressor(bool compress, size_t block_size); +compressor_t *create_gzip_compressor(bool compress, size_t block_size); #endif /* INTERNAL_H */ |