diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-01-26 01:27:14 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-01-26 01:29:45 +0100 |
commit | d53b48bdf02acca8972739f30dae547d0375c21b (patch) | |
tree | 66b4fbb38873f91e9677588e92156a0ac26745b6 /src/Main/CommandLineInterface.cpp | |
parent | 84ee7076d93b56eefafb9f5e464e2fe5e56b83af (diff) | |
download | VeraCrypt-d53b48bdf02acca8972739f30dae547d0375c21b.tar.gz VeraCrypt-d53b48bdf02acca8972739f30dae547d0375c21b.zip |
Linux/MacOSX: fix issue creating volumes using command line with a filesystem other than FAT.
Diffstat (limited to 'src/Main/CommandLineInterface.cpp')
-rw-r--r-- | src/Main/CommandLineInterface.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/Main/CommandLineInterface.cpp b/src/Main/CommandLineInterface.cpp index c91976ed..f0d1f257 100644 --- a/src/Main/CommandLineInterface.cpp +++ b/src/Main/CommandLineInterface.cpp @@ -297,6 +297,27 @@ namespace VeraCrypt if (str.IsSameAs (L"FAT", false)) ArgFilesystem = VolumeCreationOptions::FilesystemType::FAT; +#ifdef TC_LINUX + else if (str.IsSameAs (L"Ext2", false)) + ArgFilesystem = VolumeCreationOptions::FilesystemType::Ext2; + else if (str.IsSameAs (L"Ext3", false)) + ArgFilesystem = VolumeCreationOptions::FilesystemType::Ext3; + else if (str.IsSameAs (L"Ext4", false)) + ArgFilesystem = VolumeCreationOptions::FilesystemType::Ext4; + else if (str.IsSameAs (L"NTFS", false)) + ArgFilesystem = VolumeCreationOptions::FilesystemType::NTFS; +#elif defined (TC_MACOSX) + else if ( str.IsSameAs (L"HFS", false) + || str.IsSameAs (L"HFS+", false) + || str.IsSameAs (L"MacOsExt", false) + ) + { + ArgFilesystem = VolumeCreationOptions::FilesystemType::MacOsExt; + } +#elif defined (TC_FREEBSD) || defined (TC_SOLARIS) + else if (str.IsSameAs (L"UFS", false)) + ArgFilesystem = VolumeCreationOptions::FilesystemType::UFS; +#endif else ArgFilesystem = VolumeCreationOptions::FilesystemType::None; } |