]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
The 5th parameter of RRIP "PX" extension is not inode.
authorMichihiro NAKAJIMA <ggcueroad@gmail.com>
Sun, 11 Oct 2009 11:17:05 +0000 (07:17 -0400)
committerMichihiro NAKAJIMA <ggcueroad@gmail.com>
Sun, 11 Oct 2009 11:17:05 +0000 (07:17 -0400)
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

index 7becb2dc4f8be4c4321de1db9dc2a1bd5f4ad7cc..7a790089e929bec4722d68c9758804315d4f142e 100644 (file)
@@ -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);