diff options
author | Niall O'Higgins <niallo@cvs.openbsd.org> | 2005-04-30 13:56:17 +0000 |
---|---|---|
committer | Niall O'Higgins <niallo@cvs.openbsd.org> | 2005-04-30 13:56:17 +0000 |
commit | e723898372517d7a195b4eb18912751f9316ae2e (patch) | |
tree | 4a6149adbaa52b0539597497fd19f2cfd9cf066e /sbin/fsck_ext2fs/fsck.h | |
parent | 8153e99f0a02eb7725ff3061033d08113ee83991 (diff) |
Support checking filesystems which have or once had large files (>4 GB)
on them.
From NetBSD
Diffstat (limited to 'sbin/fsck_ext2fs/fsck.h')
-rw-r--r-- | sbin/fsck_ext2fs/fsck.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/fsck_ext2fs/fsck.h b/sbin/fsck_ext2fs/fsck.h index f01bb88b8d9..88a54cd1f6c 100644 --- a/sbin/fsck_ext2fs/fsck.h +++ b/sbin/fsck_ext2fs/fsck.h @@ -1,4 +1,4 @@ -/* $OpenBSD: fsck.h,v 1.8 2003/06/02 20:06:15 millert Exp $ */ +/* $OpenBSD: fsck.h,v 1.9 2005/04/30 13:56:16 niallo Exp $ */ /* $NetBSD: fsck.h,v 1.1 1997/06/11 11:21:47 bouyer Exp $ */ /* @@ -155,7 +155,7 @@ struct inoinfo { ino_t i_number; /* inode number of this entry */ ino_t i_parent; /* inode number of parent */ ino_t i_dotdot; /* inode number of `..' */ - size_t i_isize; /* size of inode */ + u_int64_t i_isize; /* size of inode */ u_int i_numblks; /* size of block array in bytes */ daddr_t i_blks[1]; /* actually longer */ } **inphead, **inpsort; |