1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00

fixed file permissions

This commit is contained in:
Falk Werner 2022-11-20 13:36:16 +01:00
parent 0a513322b7
commit bd57b1a840

View File

@ -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