diff options
Diffstat (limited to 'example')
-rw-r--r-- | example/passthrough.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/passthrough.c b/example/passthrough.c index 08273ff..86ac698 100644 --- a/example/passthrough.c +++ b/example/passthrough.c @@ -132,7 +132,7 @@ static int xmp_readdir(const char *path, void *buf, fuse_fill_dir_t filler, memset(&st, 0, sizeof(st)); st.st_ino = de->d_ino; st.st_mode = de->d_type << 12; - if (filler(buf, de->d_name, &st, 0, 0)) + if (filler(buf, de->d_name, &st, 0, FUSE_FILL_DIR_PLUS)) break; } |