VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Main/CommandLineInterface.cpp
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2016-01-30 00:39:43 +0100
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2016-01-30 00:48:20 +0100
commitb407512248034dee23186febfc5e6c9597b77912 (patch)
treeb69314c181695b29a2ffeae346df19ec53be7362 /src/Main/CommandLineInterface.cpp
parentdde3dcf14d4c9b99b528a99f7ece20fc75396df9 (diff)
downloadVeraCrypt-b407512248034dee23186febfc5e6c9597b77912.tar.gz
VeraCrypt-b407512248034dee23186febfc5e6c9597b77912.zip
MacOSX: Support creation exFAT volumes on OSX using the built-in command newfs_exfat
Diffstat (limited to 'src/Main/CommandLineInterface.cpp')
-rw-r--r--src/Main/CommandLineInterface.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Main/CommandLineInterface.cpp b/src/Main/CommandLineInterface.cpp
index 281b1aec..566fdb21 100644
--- a/src/Main/CommandLineInterface.cpp
+++ b/src/Main/CommandLineInterface.cpp
@@ -316,6 +316,8 @@ namespace VeraCrypt
{
ArgFilesystem = VolumeCreationOptions::FilesystemType::MacOsExt;
}
+ else if (str.IsSameAs (L"exFAT", false))
+ ArgFilesystem = VolumeCreationOptions::FilesystemType::exFAT;
#elif defined (TC_FREEBSD) || defined (TC_SOLARIS)
else if (str.IsSameAs (L"UFS", false))
ArgFilesystem = VolumeCreationOptions::FilesystemType::UFS;