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/TextUserInterface.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/TextUserInterface.cpp')
-rw-r--r-- | src/Main/TextUserInterface.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Main/TextUserInterface.cpp b/src/Main/TextUserInterface.cpp index c5d64d15..fb654f3a 100644 --- a/src/Main/TextUserInterface.cpp +++ b/src/Main/TextUserInterface.cpp @@ -883,6 +883,10 @@ namespace VeraCrypt if (options->Filesystem == VolumeCreationOptions::FilesystemType::MacOsExt && options->Size >= 10 * BYTES_PER_MB) args.push_back ("-J"); + // Perform a quick NTFS formatting + if (options->Filesystem == VolumeCreationOptions::FilesystemType::NTFS) + args.push_back ("-f"); + args.push_back (string (virtualDevice)); Process::Execute (fsFormatter, args); |