From: jrmarino Date: Tue, 22 Aug 2017 13:46:29 +0000 (-0500) Subject: Recognize ".tzst" extension as ".tar.zst" X-Git-Tag: v3.3.3~43^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e2134fb3b4cd20997e4d11c3373db2cf21ebaa47;p=thirdparty%2Flibarchive.git Recognize ".tzst" extension as ".tar.zst" This follows convention establish by ".tgz", ".txz", etc. The alias array was not sorted alphabetically (the only order seems to be grouping by decomposed extension), so the new element was just added to the end. --- diff --git a/tar/creation_set.c b/tar/creation_set.c index d3c4d2152..bdc607dae 100644 --- a/tar/creation_set.c +++ b/tar/creation_set.c @@ -122,6 +122,7 @@ decompose_alias(const char *suffix) { ".tzo", ".tar.lzo" }, { ".taZ", ".tar.Z" }, { ".tZ", ".tar.Z" }, + { ".tzst", ".tar.zst" }, { NULL, NULL } };