From ddaf8ed86deb923ed73be726045f6ec53be2f256 Mon Sep 17 00:00:00 2001 From: josch Date: Sat, 20 Dec 2014 23:38:19 +0100 Subject: [PATCH] fuse: make access a no-op --- fuse/operations.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fuse/operations.c b/fuse/operations.c index 51341dd..e680c35 100644 --- a/fuse/operations.c +++ b/fuse/operations.c @@ -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])