diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2006-02-25 14:42:03 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2006-02-25 14:42:03 +0000 |
commit | aa8258e9fb887d45c0a5754f158015e035ce37bc (patch) | |
tree | e15cd7036ebc155b73501024205427a751035d7d /lib/fuse_lowlevel.c | |
parent | a039f8fa00c1aea3291a16253f94aaa98389fdbd (diff) | |
download | libfuse-aa8258e9fb887d45c0a5754f158015e035ce37bc.tar.gz |
fix
Diffstat (limited to 'lib/fuse_lowlevel.c')
-rw-r--r-- | lib/fuse_lowlevel.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c index 12f6c82..8437eb4 100644 --- a/lib/fuse_lowlevel.c +++ b/lib/fuse_lowlevel.c @@ -653,8 +653,13 @@ static void do_statfs(fuse_req_t req) { if (req->f->op.statfs) req->f->op.statfs(req); - else - fuse_reply_err(req, ENOSYS); + else { + struct statvfs buf = { + .f_namemax = 255, + .f_bsize = 512, + }; + fuse_reply_statfs(req, &buf); + } } static void do_setxattr(fuse_req_t req, fuse_ino_t nodeid, |