fuse: make access a no-op

This commit is contained in:
josch
2014-12-20 23:38:19 +01:00
parent b1b32d9ad8
commit ddaf8ed86d

View File

@@ -802,8 +802,8 @@ int mediafirefs_access(const char *path, int mode)
{
(void)path;
(void)mode;
fprintf(stderr, "access not implemented\n");
return -ENOENT;
fprintf(stderr, "access is a no-op\n");
return 0;
}
int mediafirefs_utimens(const char *path, const struct timespec tv[2])