From 55386042480dacf0256a67a22aa6b42406611834 Mon Sep 17 00:00:00 2001 From: jewelcodes Date: Wed, 11 Sep 2024 17:40:01 -0400 Subject: [PATCH] file: relay mount() syscall to lumen --- src/file.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/file.c b/src/file.c index d7a8a95..22c9a6e 100644 --- a/src/file.c +++ b/src/file.c @@ -30,5 +30,6 @@ int mount(Thread *t, uint64_t id, const char *src, const char *tgt, const char * strcpy(command->source, src); strcpy(command->target, tgt); strcpy(command->type, type); - + + requestServer(t, command); }