diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib/fuse.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2005-12-12 Miklos Szeredi <miklos@szeredi.hu> + + * Fix stale code in ifdef FreeBSD. Patch from Csaba Henk + 2005-12-09 Miklos Szeredi <miklos@szeredi.hu> * Released 2.5.0-pre1 @@ -1875,7 +1875,7 @@ struct fuse *fuse_new_common(int fd, const char *opts, * In FreeBSD, we always use these settings as inode numbers are needed to * make getcwd(3) work. */ - f->flags |= FUSE_READDIR_INO; + f->conf.readdir_ino = 1; #endif f->se = fuse_lowlevel_new(f->conf.llopts, &fuse_path_ops, |