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_fh.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'example/fusexmp_fh.c') diff --git a/example/fusexmp_fh.c b/example/fusexmp_fh.c index f1c08f8..d17699e 100644 --- a/example/fusexmp_fh.c +++ b/example/fusexmp_fh.c @@ -33,6 +33,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; @@ -317,6 +328,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, .opendir = xmp_opendir, .readdir = xmp_readdir, -- cgit v1.2.3