diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-07-14 16:57:17 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-07-14 16:58:30 +0200 |
commit | 63818bcaa44b9ce0b59ac2c56afdee1f5e1976ba (patch) | |
tree | 1bc1741b20d94f3625454861eb6d038f90040d87 | |
parent | 88ef238593f256b7fffb34b494c334dbc11e4116 (diff) | |
download | VeraCrypt-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)
-rw-r--r-- | src/Format/Tcformat.c | 2 |
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);
|