Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-2-0]: src/sys/fs/cd9660 Pull up revision 1.6 (requested by dillo ...
details: https://anonhg.NetBSD.org/src/rev/559b21611ead
branches: netbsd-2-0
changeset: 561578:559b21611ead
user: tron <tron%NetBSD.org@localhost>
date: Tue Jun 22 09:02:45 2004 +0000
description:
Pull up revision 1.6 (requested by dillo in ticket #525):
Use unsigned long for file size and location; avoids sign extension
for files >2GB. Okayed by Martin Husemann.
diffstat:
sys/fs/cd9660/cd9660_node.h | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (22 lines):
diff -r a81bb31d694c -r 559b21611ead sys/fs/cd9660/cd9660_node.h
--- a/sys/fs/cd9660/cd9660_node.h Tue Jun 22 09:01:03 2004 +0000
+++ b/sys/fs/cd9660/cd9660_node.h Tue Jun 22 09:02:45 2004 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: cd9660_node.h,v 1.5 2003/08/07 16:31:34 agc Exp $ */
+/* $NetBSD: cd9660_node.h,v 1.5.2.1 2004/06/22 09:02:45 tron Exp $ */
/*-
* Copyright (c) 1994
@@ -86,9 +86,9 @@
doff_t i_offset; /* offset of free space in directory */
ino_t i_ino; /* inode number of found directory */
- long iso_extent; /* extent of file */
- long i_size;
- long iso_start; /* actual start of data of file (may be different */
+ unsigned long iso_extent; /* extent of file */
+ unsigned long i_size;
+ unsigned long iso_start; /* actual start of data of file (may be different */
/* from iso_extent, if file has extended attributes) */
ISO_RRIP_INODE inode;
};
Home |
Main Index |
Thread Index |
Old Index