From: Tim Kientzle Date: Sun, 22 Aug 2010 20:33:41 +0000 (-0400) Subject: Remove the SCHILY dev/ino/nlink attributes, since noone seems to X-Git-Tag: v3.0.0a~894 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de60ddd06dab4d9dabd385bb25aae90e41d430b4;p=thirdparty%2Flibarchive.git Remove the SCHILY dev/ino/nlink attributes, since noone seems to be actually using them and they generate a lot of complaints. SVN-Revision: 2563 --- diff --git a/libarchive/archive_write_set_format_pax.c b/libarchive/archive_write_set_format_pax.c index c43b4c685..f03760610 100644 --- a/libarchive/archive_write_set_format_pax.c +++ b/libarchive/archive_write_set_format_pax.c @@ -953,16 +953,6 @@ archive_write_pax_header(struct archive_write *a, add_pax_attr_w(&(pax->pax_header), "SCHILY.acl.default", wp); - /* Include star-compatible metadata info. */ - /* Note: "SCHILY.dev{major,minor}" are NOT the - * major/minor portions of "SCHILY.dev". */ - add_pax_attr_int(&(pax->pax_header), "SCHILY.dev", - archive_entry_dev(entry_main)); - add_pax_attr_int(&(pax->pax_header), "SCHILY.ino", - archive_entry_ino64(entry_main)); - add_pax_attr_int(&(pax->pax_header), "SCHILY.nlink", - archive_entry_nlink(entry_main)); - /* We use GNU-tar-compatible sparse attributes. */ if (sparse_count > 0) { int64_t soffset, slength;