diff options
author | dzwdz | 2022-07-12 22:25:46 +0200 |
---|---|---|
committer | dzwdz | 2022-07-12 22:25:46 +0200 |
commit | f9c1ceb309a85226b950c05e31f0f3cb1614dd4d (patch) | |
tree | f837f6f86a6934ae74c69c381b8408c3e6a39203 /src/user/fs/misc.c | |
parent | a854f2979a86f76bd6405041bf5227257548acf3 (diff) |
remove the incorrect OPEN_CREATE guards in fs drivers
Diffstat (limited to 'src/user/fs/misc.c')
-rw-r--r-- | src/user/fs/misc.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/user/fs/misc.c b/src/user/fs/misc.c index b3e1a2c..fa1115d 100644 --- a/src/user/fs/misc.c +++ b/src/user/fs/misc.c @@ -104,11 +104,6 @@ void fs_dir_inject(const char *path) { { /* opening a directory that we're injecting into */ - if (res.flags & OPEN_CREATE) { - _syscall_fs_respond(NULL, -1, 0); - break; - } - data = malloc(sizeof *data); data->delegate = _syscall_open(buf, res.len, res.flags); data->inject = path + res.len; |