[0.4.9] cherry-pick [VFATLIB] Only attempt to clear the dirty set bit in rw mode.

(cherry picked from commit 59dc951bf7)
This commit is contained in:
Pierre Schweitzer 2018-05-28 09:00:13 +02:00 committed by Joachim Henze
parent 519cdd3c52
commit ae5aa9cd8b

View file

@ -294,9 +294,11 @@ static char print_fat_dirty_state(void)
if (interactive) {
printf("1) Remove dirty bit\n" "2) No action\n");
return get_key("12", "?");
} else
} else if (rw) {
printf(" Automatically removing dirty bit.\n");
return '1';
}
return '2';
}
static void check_fat_state_bit(DOS_FS * fs, void *b)