Remove 'use_ino' because I'm afraid I can not use it with "file:stream" nammed data stream access interface. :-(
parent
48b8edc464
commit
c9294cb701
|
@ -1401,9 +1401,9 @@ int main(int argc, char *argv[])
|
||||||
}
|
}
|
||||||
free(parsed_options);
|
free(parsed_options);
|
||||||
#ifndef DEBUG
|
#ifndef DEBUG
|
||||||
fh = fuse_new(ffd, "use_ino", &ntfs_fuse_oper, sizeof(ntfs_fuse_oper));
|
fh = fuse_new(ffd, NULL, &ntfs_fuse_oper, sizeof(ntfs_fuse_oper));
|
||||||
#else
|
#else
|
||||||
fh = fuse_new(ffd, "debug,use_ino", &ntfs_fuse_oper,
|
fh = fuse_new(ffd, "debug", &ntfs_fuse_oper,
|
||||||
sizeof(ntfs_fuse_oper));
|
sizeof(ntfs_fuse_oper));
|
||||||
#endif
|
#endif
|
||||||
if (!fh) {
|
if (!fh) {
|
||||||
|
|
Loading…
Reference in New Issue