From c9294cb7016ed35c63ecb885468ce1f75afa30af Mon Sep 17 00:00:00 2001 From: cha0smaster Date: Sat, 24 Sep 2005 13:05:36 +0000 Subject: [PATCH] Remove 'use_ino' because I'm afraid I can not use it with "file:stream" nammed data stream access interface. :-( --- ntfsprogs/ntfsmount.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ntfsprogs/ntfsmount.c b/ntfsprogs/ntfsmount.c index cca76cd8..9a720093 100644 --- a/ntfsprogs/ntfsmount.c +++ b/ntfsprogs/ntfsmount.c @@ -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) {