From 05d2a4cf2edb944316a62b284695b99c8b32fe1b Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 23 Dec 2019 16:51:49 +0100 Subject: fix zstd magic MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I spot it while adding support for zstd compressed metadata in URPM/urpmi, which was broken by this typo typo introduced in commit 3684424fe297c996bb05bb64631336fa2903df12 Change-Id: Icce1987c217e638f5f3f74b4ec72b8e5e1d92d84 Origin: https://github.com/rpm-software-management/rpm/commit/c464f1ece501346da11ed7582b8d46682363a285 Signed-off-by: Ɓukasz Stelmach --- rpmio/rpmfileutil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpmio/rpmfileutil.c b/rpmio/rpmfileutil.c index 9e47ff8a5..a648a0e74 100644 --- a/rpmio/rpmfileutil.c +++ b/rpmio/rpmfileutil.c @@ -351,7 +351,7 @@ int rpmFileIsCompressed(const char * file, rpmCompressedMagic * compressed) (magic[4] == 0x5a) && (magic[5] == 0x00)) { /* new style xz (lzma) with magic */ *compressed = COMPRESSED_XZ; - } else if ((magic[0] == 0x28) && (magic[1] == 0x85) && + } else if ((magic[0] == 0x28) && (magic[1] == 0xB5) && (magic[2] == 0x2f) ) { *compressed = COMPRESSED_ZSTD; } else if ((magic[0] == 'L') && (magic[1] == 'Z') && -- cgit v1.2.3