Allow "posix" as a synonym for "pax". (The gtar folks chose "posix",

which is really, really dumb and just going to cause confusion among
people who understand that "ustar" is also a POSIX standard tar format.)
This commit is contained in:
Tim Kientzle 2004-07-25 23:10:38 +00:00
parent 3242376072
commit e5cdebc19e

View File

@ -41,6 +41,7 @@ struct { const char *name; int (*setter)(struct archive *); } names[] =
{
{ "cpio", archive_write_set_format_cpio },
{ "pax", archive_write_set_format_pax },
{ "posix", archive_write_set_format_pax },
{ "shar", archive_write_set_format_shar },
{ "shardump", archive_write_set_format_shar_dump },
{ "ustar", archive_write_set_format_ustar },