mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[VFATLIB] Only attempt to clear the dirty set bit in rw mode.
This commit is contained in:
parent
cd9f22e9e5
commit
59dc951bf7
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue