From bd57b1a8404ab20f02fec5c8a14780c4201a4a28 Mon Sep 17 00:00:00 2001 From: Falk Werner Date: Sun, 20 Nov 2022 13:36:16 +0100 Subject: [PATCH] fixed file permissions --- src/webfuse/filesystem/empty_filesystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webfuse/filesystem/empty_filesystem.cpp b/src/webfuse/filesystem/empty_filesystem.cpp index 6552d2e..c9389e2 100644 --- a/src/webfuse/filesystem/empty_filesystem.cpp +++ b/src/webfuse/filesystem/empty_filesystem.cpp @@ -22,7 +22,7 @@ int empty_filesystem::getattr(std::string const & path, struct stat * attr) { attr->st_ino = 1; attr->st_nlink = 1; - attr->st_mode = S_IFDIR | 0x444; + attr->st_mode = S_IFDIR | 0555; return 0; } else