VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2015-07-14 16:57:17 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2015-07-14 16:58:30 +0200
commit63818bcaa44b9ce0b59ac2c56afdee1f5e1976ba (patch)
tree1bc1741b20d94f3625454861eb6d038f90040d87 /src
parent88ef238593f256b7fffb34b494c334dbc11e4116 (diff)
downloadVeraCrypt-63818bcaa44b9ce0b59ac2c56afdee1f5e1976ba.tar.gz
VeraCrypt-63818bcaa44b9ce0b59ac2c56afdee1f5e1976ba.zip
Windows: Don't offer "None" as wipe mode when real wipe is explicitly needed (like in Decoy system partition wipe case)
Diffstat (limited to 'src')
-rw-r--r--src/Format/Tcformat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Format/Tcformat.c b/src/Format/Tcformat.c
index ae9d7702..c34de80b 100644
--- a/src/Format/Tcformat.c
+++ b/src/Format/Tcformat.c
@@ -4964,7 +4964,7 @@ BOOL CALLBACK PageDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa
SetWindowTextW (GetDlgItem (GetParent (hwndDlg), IDC_BOX_TITLE), GetString ("WIPE_MODE_TITLE"));
SetWindowTextW (GetDlgItem (hwndDlg, IDT_WIPE_MODE_INFO), GetString ("WIPE_MODE_INFO"));
- PopulateWipeModeCombo (GetDlgItem (hwndDlg, IDC_WIPE_MODE), FALSE, FALSE, FALSE);
+ PopulateWipeModeCombo (GetDlgItem (hwndDlg, IDC_WIPE_MODE), FALSE, FALSE, TRUE);
SelectAlgo (GetDlgItem (hwndDlg, IDC_WIPE_MODE), (int *) &nWipeMode);