mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Teach gunzip that .tbz and .tbz2 uncompress to .tar, in a manner similar to
its existing understanding that .tgz uncompresses to .tar. MFC after: 3 days PR: 121519 Submitted by: Ighighi <ighighi at gmail.com>
This commit is contained in:
parent
d8063e367d
commit
3c23548899
1 changed files with 2 additions and 0 deletions
|
|
@ -133,6 +133,8 @@ static suffixes_t suffixes[] = {
|
|||
SUFFIX(".tgz", ".tar"),
|
||||
#ifndef NO_BZIP2_SUPPORT
|
||||
SUFFIX(BZ2_SUFFIX, ""),
|
||||
SUFFIX(".tbz", ".tar"),
|
||||
SUFFIX(".tbz2", ".tar"),
|
||||
#endif
|
||||
#ifndef NO_COMPRESS_SUPPORT
|
||||
SUFFIX(Z_SUFFIX, ""),
|
||||
|
|
|
|||
Loading…
Reference in a new issue