diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bindfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bindfs.c b/src/bindfs.c index a40d578..a274079 100644 --- a/src/bindfs.c +++ b/src/bindfs.c @@ -608,7 +608,7 @@ static int bindfs_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, telldir(dp))) + if (filler(buf, de->d_name, &st, 0)) break; } |