From b0b13d1e5499e20382ad74e202160d49e1792ee8 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Wed, 26 Oct 2005 12:53:25 +0000 Subject: add access operation --- example/fusexmp.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'example/fusexmp.c') diff --git a/example/fusexmp.c b/example/fusexmp.c index 1ef0ac3..1732556 100644 --- a/example/fusexmp.c +++ b/example/fusexmp.c @@ -36,6 +36,17 @@ static int xmp_getattr(const char *path, struct stat *stbuf) return 0; } +static int xmp_access(const char *path, int mask) +{ + int res; + + res = access(path, mask); + if(res == -1) + return -errno; + + return 0; +} + static int xmp_readlink(const char *path, char *buf, size_t size) { int res; @@ -319,6 +330,7 @@ static int xmp_removexattr(const char *path, const char *name) static struct fuse_operations xmp_oper = { .getattr = xmp_getattr, + .access = xmp_access, .readlink = xmp_readlink, .readdir = xmp_readdir, .mknod = xmp_mknod, -- cgit v1.2.3