From 3f91b64c044d07b8e027d15c7ab3626c70571d96 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 23 Dec 2019 16:51:49 +0100 Subject: [PATCH] fix zstd magic I spot it while adding support for zstd compressed metadata in URPM/urpmi, which was broken by this typo typo introduced in commit 3684424fe297c996bb05bb64631336fa2903df12 --- rpmio/rpmfileutil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpmio/rpmfileutil.c b/rpmio/rpmfileutil.c index bda97adf12..84ee34f4d7 100644 --- a/rpmio/rpmfileutil.c +++ b/rpmio/rpmfileutil.c @@ -188,7 +188,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') &&