diff --git a/source/devicemounter/PartitionHandle.cpp b/source/devicemounter/PartitionHandle.cpp index 84ce0fcd..0fe9c875 100644 --- a/source/devicemounter/PartitionHandle.cpp +++ b/source/devicemounter/PartitionHandle.cpp @@ -128,7 +128,7 @@ bool PartitionHandle::Mount(int pos, const char * name) } else if(strncmp(GetFSName(pos), "NTFS", 4) == 0) { - if(ntfsMount(MountNameList[pos].c_str(), interface, GetLBAStart(pos), CACHE, SECTORS, NTFS_SU | NTFS_RECOVER | NTFS_IGNORE_CASE)) + if(ntfsMount(MountNameList[pos].c_str(), interface, GetLBAStart(pos), CACHE, SECTORS, NTFS_SU | NTFS_RECOVER)) return true; } else if(strncmp(GetFSName(pos), "LINUX", 5) == 0) diff --git a/source/plugin/plugin.cpp b/source/plugin/plugin.cpp index 84a909f1..4cf1a182 100644 --- a/source/plugin/plugin.cpp +++ b/source/plugin/plugin.cpp @@ -244,7 +244,7 @@ vector Plugin::CreateMplayerCEArguments(const char *filepath) if(strncmp(DeviceHandler::PathToFSName(filepath), "NTF", 3) == 0) { - sprintf(dst, "ntfs_usb:%s", ptr); + sprintf(dst, "ntfs:%s", ptr); } else if(strncmp(device, "usb", 3) == 0) { @@ -256,7 +256,6 @@ vector Plugin::CreateMplayerCEArguments(const char *filepath) } args.push_back(dst); - args.push_back(string("-quiet")); return args; }