mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2026-06-21 03:55:02 -05:00
Linux: allow mounting NTFS volumes with ntfs3 (#1695)
* Linux: allow mounting volumes with ntfs3 * Linux: add ntfs3 preference for NTFS mounts * Linux: wrap ntfs3 preference help text * Add Linux ntfs3 mount preference * Remove Russian translation changes from ntfs3 PR * XML Translations: Add English fallback entries for ntfs3 preference --------- Co-authored-by: Mounir IDRASSI <mounir.idrassi@amcrypto.jp>
This commit is contained in:
@@ -26,6 +26,9 @@ namespace VeraCrypt
|
||||
MountOptions ()
|
||||
:
|
||||
CachePassword (false),
|
||||
#ifdef TC_LINUX
|
||||
MountNtfsWithNtfs3 (false),
|
||||
#endif
|
||||
NoFilesystem (false),
|
||||
NoHardwareCrypto (false),
|
||||
NoKernelCrypto (false),
|
||||
@@ -51,6 +54,9 @@ namespace VeraCrypt
|
||||
bool CachePassword;
|
||||
wstring FilesystemOptions;
|
||||
wstring FilesystemType;
|
||||
#ifdef TC_LINUX
|
||||
bool MountNtfsWithNtfs3;
|
||||
#endif
|
||||
shared_ptr <KeyfileList> Keyfiles;
|
||||
shared_ptr <DirectoryPath> MountPoint;
|
||||
bool NoFilesystem;
|
||||
|
||||
Reference in New Issue
Block a user