Always pass "use_ino" to fuse_new, since it's ok to have several files with sameinode number.
parent
9fb63e797e
commit
01585fd7cd
|
@ -1536,12 +1536,9 @@ int main(int argc, char *argv[])
|
|||
}
|
||||
free(parsed_options);
|
||||
#ifndef DEBUG
|
||||
fh = fuse_new(ffd, (ctx->streams == NF_STREAMS_INTERFACE_WINDOWS) ?
|
||||
NULL : "use_ino", &ntfs_fuse_oper,
|
||||
sizeof(ntfs_fuse_oper));
|
||||
fh = fuse_new(ffd, "use_ino", &ntfs_fuse_oper, sizeof(ntfs_fuse_oper));
|
||||
#else
|
||||
fh = fuse_new(ffd, (ctx->streams == NF_STREAMS_INTERFACE_WINDOWS) ?
|
||||
"debug" : "debug,use_ino" , &ntfs_fuse_oper,
|
||||
fh = fuse_new(ffd, "debug,use_ino" , &ntfs_fuse_oper,
|
||||
sizeof(ntfs_fuse_oper));
|
||||
#endif
|
||||
if (!fh) {
|
||||
|
|
Loading…
Reference in New Issue