diff options
author | dzwdz | 2022-05-01 19:25:22 +0200 |
---|---|---|
committer | dzwdz | 2022-05-01 19:25:22 +0200 |
commit | 7c62817193517f298bc566f3803c00d53a9a2b94 (patch) | |
tree | 8d6b95059e5f89be239e303ae53c847c88edea72 /src/init/fs | |
parent | 681e6b45b6f22f30d29745fa9a400558fe6dada5 (diff) |
init/fs: make directory listings respect offsets
Diffstat (limited to 'src/init/fs')
-rw-r--r-- | src/init/fs/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init/fs/misc.c b/src/init/fs/misc.c index f140910..64e3664 100644 --- a/src/init/fs/misc.c +++ b/src/init/fs/misc.c @@ -145,7 +145,7 @@ void fs_dir_inject(const char *path) { case VFSOP_READ: if (handles[res.id].inject) { - // TODO check offset + if (res.offset > 0) _syscall_fs_respond(NULL, 0); // TODO working offsets struct fs_dir_handle h = handles[res.id]; int out_len = 0; |