aboutsummaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <miklos@szeredi.hu>2008-02-08 17:22:15 +0000
committerGravatar Miklos Szeredi <miklos@szeredi.hu>2008-02-08 17:22:15 +0000
commit30ece080006087a7e615cce3f7fc51b6d8a5d5bf (patch)
tree5d60a4679f82a1bb941356278d87abe2b9560d1b /example
parentb20d88bbbc6e5ae67f0c99595859fd653949a3aa (diff)
Support receiving file handle from kernel in GETATTR request; Allow operations with a NULL path argument, if the filesystem supports it
Diffstat (limited to 'example')
-rw-r--r--example/fusexmp_fh.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/example/fusexmp_fh.c b/example/fusexmp_fh.c
index 4949675..b86d3f6 100644
--- a/example/fusexmp_fh.c
+++ b/example/fusexmp_fh.c
@@ -484,6 +484,8 @@ static struct fuse_operations xmp_oper = {
.removexattr = xmp_removexattr,
#endif
.lock = xmp_lock,
+
+ .flag_nullpath_ok = 1,
};
int main(int argc, char *argv[])