summaryrefslogtreecommitdiffstats
path: root/sbin/fsck_ifs/pass5.c
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/fsck_ifs/pass5.c')
-rw-r--r--sbin/fsck_ifs/pass5.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/sbin/fsck_ifs/pass5.c b/sbin/fsck_ifs/pass5.c
index eae5d7e..a6ed6a1 100644
--- a/sbin/fsck_ifs/pass5.c
+++ b/sbin/fsck_ifs/pass5.c
@@ -315,9 +315,17 @@ pass5()
&& dofix(&idesc[0], "FREE BLK COUNT(S) WRONG IN SUPERBLK")) {
bcopy((char *)&cstotal, (char *)&fs->fs_cstotal, sizeof *cs);
fs->fs_ronly = 0;
- fs->fs_fmod = 0;
sbdirty();
}
+ if (fs->fs_fmod != 0) {
+ pwarn("MODIFIED FLAG SET IN SUPERBLOCK");
+ if (preen)
+ printf(" (FIXED)\n");
+ if (preen || reply("FIX") == 1) {
+ fs->fs_fmod = 0;
+ sbdirty();
+ }
+ }
if (fs->fs_clean == 0) {
pwarn("CLEAN FLAG NOT SET IN SUPERBLOCK");
if (preen)
OpenPOWER on IntegriCloud