diff --git a/ntfsprogs/ntfsmount.c b/ntfsprogs/ntfsmount.c index 0c39f49f..ed18d930 100644 --- a/ntfsprogs/ntfsmount.c +++ b/ntfsprogs/ntfsmount.c @@ -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) {