summaryrefslogtreecommitdiff
path: root/libarchive/archive_entry_private.h
diff options
context:
space:
mode:
authorTim Kientzle <kientzle@gmail.com>2009-09-24 11:06:56 -0400
committerTim Kientzle <kientzle@gmail.com>2009-09-24 11:06:56 -0400
commit835b0b1bf11cb59dca9390c67d005bf28935c073 (patch)
tree97d02d2d19bf2c036ab85a6eb3375ca24c62c230 /libarchive/archive_entry_private.h
parent01fd4d71399f25d3726d34f6e56fc620f22e3b0b (diff)
downloadlibarchive-835b0b1bf11cb59dca9390c67d005bf28935c073.tar.gz
Use int64_t for storing inode values internally.
This fixes some hardlink-detection issues on Windows: NTFS uses 64-bit inode values, but Windows ino_t is only 16 bits. SVN-Revision: 1463
Diffstat (limited to 'libarchive/archive_entry_private.h')
-rw-r--r--libarchive/archive_entry_private.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libarchive/archive_entry_private.h b/libarchive/archive_entry_private.h
index c1d7c3f9..0c8c032a 100644
--- a/libarchive/archive_entry_private.h
+++ b/libarchive/archive_entry_private.h
@@ -119,7 +119,7 @@ struct archive_entry {
int64_t aest_birthtime;
uint32_t aest_birthtime_nsec;
gid_t aest_gid;
- ino_t aest_ino;
+ int64_t aest_ino;
mode_t aest_mode;
uint32_t aest_nlink;
uint64_t aest_size;