From 18e75e4cb186b5d247caea5c9aa21b69e4914c50 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Thu, 19 Feb 2004 14:23:27 +0000 Subject: statfs fixes --- example/null.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'example/null.c') diff --git a/example/null.c b/example/null.c index f9ead78..d897e92 100644 --- a/example/null.c +++ b/example/null.c @@ -64,19 +64,12 @@ static int null_write(const char *path, const char *UNUSED(buf), size_t size, return size; } -static int null_statfs(struct fuse_statfs *st) -{ - return st->block_size = st->blocks = st->blocks_free = st->files = - st->files_free = st->namelen = 0; -} - static struct fuse_operations null_oper = { .getattr = null_getattr, .truncate = null_truncate, .open = null_open, .read = null_read, .write = null_write, - .statfs = null_statfs, }; int main(int argc, char *argv[]) -- cgit v1.2.3