From: Michihiro NAKAJIMA Date: Sun, 11 Oct 2009 11:17:05 +0000 (-0400) Subject: The 5th parameter of RRIP "PX" extension is not inode. X-Git-Tag: v2.8.0~310 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c44ad90cfb53b97637dfdc3d12854a1b9f0c5bf8;p=thirdparty%2Flibarchive.git The 5th parameter of RRIP "PX" extension is not inode. RRIP Standrd says that parameter, FILE SERIAL NUMBER, shall have the same meaning as and may be used for the st_ino field of POSIX:5.6.1. It can treat as inode but not value of inode of directories or files. SVN-Revision: 1502 --- diff --git a/libarchive/archive_read_support_format_iso9660.c b/libarchive/archive_read_support_format_iso9660.c index 7becb2dc4..7a790089e 100644 --- a/libarchive/archive_read_support_format_iso9660.c +++ b/libarchive/archive_read_support_format_iso9660.c @@ -768,7 +768,6 @@ archive_read_format_iso9660_read_header(struct archive_read *a, archive_entry_set_uid(entry, file->uid); archive_entry_set_gid(entry, file->gid); archive_entry_set_nlink(entry, file->nlinks); - archive_entry_set_ino(entry, file->inode); archive_entry_set_birthtime(entry, file->birthtime, 0); archive_entry_set_mtime(entry, file->mtime, 0); archive_entry_set_ctime(entry, file->ctime, 0);