From e2134fb3b4cd20997e4d11c3373db2cf21ebaa47 Mon Sep 17 00:00:00 2001 From: jrmarino Date: Tue, 22 Aug 2017 08:46:29 -0500 Subject: 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. --- tar/creation_set.c | 1 + 1 file changed, 1 insertion(+) (limited to 'tar/creation_set.c') diff --git a/tar/creation_set.c b/tar/creation_set.c index d3c4d215..bdc607da 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 } }; -- cgit v1.2.1