summaryrefslogtreecommitdiff
path: root/src/kernel/fat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/fat.c')
-rw-r--r--src/kernel/fat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/fat.c b/src/kernel/fat.c
index e328f61..b342267 100644
--- a/src/kernel/fat.c
+++ b/src/kernel/fat.c
@@ -238,7 +238,7 @@ static file_id_t fat_get_file(const struct drive *d, const char *path) {
return 0;
}
- if (cur_dir->extra_attrib & FEA_OPEN_EXCLUSIVE) {
+ if (!ignore_already_open && (cur_dir->extra_attrib & FEA_OPEN_EXCLUSIVE)) {
d->done(d);
return 0;//maybe have a special return value for this?
}