diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-01-30 00:39:43 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-01-30 00:48:20 +0100 |
commit | b407512248034dee23186febfc5e6c9597b77912 (patch) | |
tree | b69314c181695b29a2ffeae346df19ec53be7362 /src/Main/Forms/VolumeFormatOptionsWizardPage.cpp | |
parent | dde3dcf14d4c9b99b528a99f7ece20fc75396df9 (diff) | |
download | VeraCrypt-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/Forms/VolumeFormatOptionsWizardPage.cpp')
-rw-r--r-- | src/Main/Forms/VolumeFormatOptionsWizardPage.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Main/Forms/VolumeFormatOptionsWizardPage.cpp b/src/Main/Forms/VolumeFormatOptionsWizardPage.cpp index 6e0aa432..8a60a346 100644 --- a/src/Main/Forms/VolumeFormatOptionsWizardPage.cpp +++ b/src/Main/Forms/VolumeFormatOptionsWizardPage.cpp @@ -39,6 +39,7 @@ namespace VeraCrypt FilesystemTypeChoice->Append (L"exFAT", (void *) VolumeCreationOptions::FilesystemType::exFAT); #elif defined (TC_MACOSX) FilesystemTypeChoice->Append (L"Mac OS Extended", (void *) VolumeCreationOptions::FilesystemType::MacOsExt); + FilesystemTypeChoice->Append (L"exFAT", (void *) VolumeCreationOptions::FilesystemType::exFAT); #elif defined (TC_FREEBSD) || defined (TC_SOLARIS) FilesystemTypeChoice->Append (L"UFS", (void *) VolumeCreationOptions::FilesystemType::UFS); #endif |