diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-10-02 22:28:22 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-10-02 22:31:28 +0200 |
commit | 400bb5224700e7dcaa2eb3572a3ba2a3fbdf02e1 (patch) | |
tree | bd80e6db93da09cb9199324fc4b88a85b17d85ce /src/Main/CommandLineInterface.cpp | |
parent | f16a298d9f4ab0f78f2af0d977be23d4236093d6 (diff) | |
download | VeraCrypt-400bb5224700e7dcaa2eb3572a3ba2a3fbdf02e1.tar.gz VeraCrypt-400bb5224700e7dcaa2eb3572a3ba2a3fbdf02e1.zip |
Linux/MacOSX:check that the requested size of file container is less than available
disk free space. Add a CLI switch to disable this check.
Diffstat (limited to 'src/Main/CommandLineInterface.cpp')
-rw-r--r-- | src/Main/CommandLineInterface.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Main/CommandLineInterface.cpp b/src/Main/CommandLineInterface.cpp index 68d308fa..a0924de4 100644 --- a/src/Main/CommandLineInterface.cpp +++ b/src/Main/CommandLineInterface.cpp @@ -30,6 +30,7 @@ namespace VeraCrypt ArgSize (0), ArgVolumeType (VolumeType::Unknown), ArgTrueCryptMode (false), + ArgDisableFileSizeCheck (false), StartBackgroundTask (false) { wxCmdLineParser parser; @@ -96,6 +97,7 @@ namespace VeraCrypt parser.AddOption (L"", L"volume-type", _("Volume type")); parser.AddParam ( _("Volume path"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL); parser.AddParam ( _("Mount point"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL); + parser.AddSwitch (L"", L"no-size-check", _("Disable check of container size against disk free space.")); wxString str; bool param1IsVolume = false; @@ -331,6 +333,7 @@ namespace VeraCrypt ArgForce = parser.Found (L"force"); ArgTrueCryptMode = parser.Found (L"truecrypt"); + ArgDisableFileSizeCheck = parser.Found (L"no-size-check"); #if !defined(TC_WINDOWS) && !defined(TC_MACOSX) if (parser.Found (L"fs-options", &str)) |