Remove 'use_ino' because I'm afraid I can not use it with "file:stream" nammed data stream access interface. :-(

This commit is contained in:
cha0smaster 2005-09-24 13:05:36 +00:00
parent 48b8edc464
commit c9294cb701

View File

@ -1401,9 +1401,9 @@ int main(int argc, char *argv[])
}
free(parsed_options);
#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
fh = fuse_new(ffd, "debug,use_ino", &ntfs_fuse_oper,
fh = fuse_new(ffd, "debug", &ntfs_fuse_oper,
sizeof(ntfs_fuse_oper));
#endif
if (!fh) {