From c44ad90cfb53b97637dfdc3d12854a1b9f0c5bf8 Mon Sep 17 00:00:00 2001 From: Michihiro NAKAJIMA Date: Sun, 11 Oct 2009 07:17:05 -0400 Subject: [PATCH] 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 --- libarchive/archive_read_support_format_iso9660.c | 1 - 1 file changed, 1 deletion(-) 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); -- 2.47.3