CVSROOT: /cvs Module name: src Changes by: mart...@cvs.openbsd.org 2025/01/30 10:08:10
Modified files: sbin/fsck_ext2fs: inode.c Log message: When struct ext2fs_dinode was extended in r1.15 fsck_ext2fs wasn't adjusted and ckinode() would copy over more than the 128 bytes that a caller would assume. Use EXT2_DINODE_SIZE() to make sure we stick to the expected 128 bytes. OK miod@