diff options
Diffstat (limited to 'example/ioctl.c')
-rw-r--r-- | example/ioctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/example/ioctl.c b/example/ioctl.c index b8dab00..9fe5c5b 100644 --- a/example/ioctl.c +++ b/example/ioctl.c @@ -181,9 +181,9 @@ static int fioc_readdir(const char *path, void *buf, fuse_fill_dir_t filler, if (fioc_file_type(path) != FIOC_ROOT) return -ENOENT; - filler(buf, ".", NULL, 0, 0); - filler(buf, "..", NULL, 0, 0); - filler(buf, FIOC_NAME, NULL, 0, 0); + filler(buf, ".", NULL, 0, FUSE_FILL_DIR_DEFAULTS); + filler(buf, "..", NULL, 0, FUSE_FILL_DIR_DEFAULTS); + filler(buf, FIOC_NAME, NULL, 0, FUSE_FILL_DIR_DEFAULTS); return 0; } |