summaryrefslogtreecommitdiff
path: root/src/user/fs/misc.c
diff options
context:
space:
mode:
authordzwdz2022-07-12 22:25:46 +0200
committerdzwdz2022-07-12 22:25:46 +0200
commitf9c1ceb309a85226b950c05e31f0f3cb1614dd4d (patch)
treef837f6f86a6934ae74c69c381b8408c3e6a39203 /src/user/fs/misc.c
parenta854f2979a86f76bd6405041bf5227257548acf3 (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.c5
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;