VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2019-12-12 00:11:58 +0100
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2019-12-12 00:13:01 +0100
commit2a93826497f10540034a430add272c1d71a25eba (patch)
treea3ebd3dd1abfed6e895b36732492a2e67d3883c3 /src
parent0c6447cae4e9415c3b0057f8edc89234f5751248 (diff)
downloadVeraCrypt-2a93826497f10540034a430add272c1d71a25eba.tar.gz
VeraCrypt-2a93826497f10540034a430add272c1d71a25eba.zip
Windows: Fix the checkbox for skipping verification of Rescue Disk not reflecting the value of /noisocheck switch when specified in VeraCrypt Format command line.
Diffstat (limited to 'src')
-rw-r--r--src/Format/Tcformat.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Format/Tcformat.c b/src/Format/Tcformat.c
index 002b6c5c..f886e0bc 100644
--- a/src/Format/Tcformat.c
+++ b/src/Format/Tcformat.c
@@ -4562,6 +4562,7 @@ BOOL CALLBACK PageDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa
SetWindowTextW (GetDlgItem (GetParent (hwndDlg), IDC_NEXT), GetString ("NEXT"));
SetWindowTextW (GetDlgItem (GetParent (hwndDlg), IDC_PREV), GetString ("PREV"));
SetWindowTextW (GetDlgItem (hwndDlg, IDT_RESCUE_DISK_INFO), bSystemIsGPT? GetString ("RESCUE_DISK_EFI_INFO"): GetString ("RESCUE_DISK_INFO"));
+ SetCheckBox (hwndDlg, IDC_SKIP_RESCUE_VERIFICATION, bDontVerifyRescueDisk);
SetDlgItemText (hwndDlg, IDC_RESCUE_DISK_ISO_PATH, szRescueDiskISO);
EnableWindow (GetDlgItem (GetParent (hwndDlg), IDC_NEXT), (GetWindowTextLength (GetDlgItem (hwndDlg, IDC_RESCUE_DISK_ISO_PATH)) > 1));
EnableWindow (GetDlgItem (GetParent (hwndDlg), IDC_PREV), TRUE);