diff options
author | mckusick <mckusick@FreeBSD.org> | 2001-05-08 06:41:56 +0000 |
---|---|---|
committer | mckusick <mckusick@FreeBSD.org> | 2001-05-08 06:41:56 +0000 |
commit | 7c549baa5610873e876e6848b2410f42ac55446b (patch) | |
tree | edf0b47af57595960c4625eb2edd2734ca7e4872 /sbin | |
parent | 6f2ea93cf4d39dc17b5fff4bc84a55d6562c8cd4 (diff) | |
download | FreeBSD-src-7c549baa5610873e876e6848b2410f42ac55446b.zip FreeBSD-src-7c549baa5610873e876e6848b2410f42ac55446b.tar.gz |
Just notify us once when encountering a partially allocated inode.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/fsck_ffs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/fsck_ffs/inode.c b/sbin/fsck_ffs/inode.c index 51df724..06c2e77 100644 --- a/sbin/fsck_ffs/inode.c +++ b/sbin/fsck_ffs/inode.c @@ -188,7 +188,7 @@ iblock(idesc, ilevel, isize) continue; (void)sprintf(buf, "PARTIALLY TRUNCATED INODE I=%lu", (u_long)idesc->id_number); - if (usedsoftdep) { + if (preen) { pfatal(buf); } else if (dofix(idesc, buf)) { *ap = 0; |