VeraCrypt
aboutsummaryrefslogtreecommitdiff
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
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.
-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
4562 SetWindowTextW (GetDlgItem (GetParent (hwndDlg), IDC_NEXT), GetString ("NEXT")); 4562 SetWindowTextW (GetDlgItem (GetParent (hwndDlg), IDC_NEXT), GetString ("NEXT"));
4563 SetWindowTextW (GetDlgItem (GetParent (hwndDlg), IDC_PREV), GetString ("PREV")); 4563 SetWindowTextW (GetDlgItem (GetParent (hwndDlg), IDC_PREV), GetString ("PREV"));
4564 SetWindowTextW (GetDlgItem (hwndDlg, IDT_RESCUE_DISK_INFO), bSystemIsGPT? GetString ("RESCUE_DISK_EFI_INFO"): GetString ("RESCUE_DISK_INFO")); 4564 SetWindowTextW (GetDlgItem (hwndDlg, IDT_RESCUE_DISK_INFO), bSystemIsGPT? GetString ("RESCUE_DISK_EFI_INFO"): GetString ("RESCUE_DISK_INFO"));
4565 SetCheckBox (hwndDlg, IDC_SKIP_RESCUE_VERIFICATION, bDontVerifyRescueDisk);
4565 SetDlgItemText (hwndDlg, IDC_RESCUE_DISK_ISO_PATH, szRescueDiskISO); 4566 SetDlgItemText (hwndDlg, IDC_RESCUE_DISK_ISO_PATH, szRescueDiskISO);
4566 EnableWindow (GetDlgItem (GetParent (hwndDlg), IDC_NEXT), (GetWindowTextLength (GetDlgItem (hwndDlg, IDC_RESCUE_DISK_ISO_PATH)) > 1)); 4567 EnableWindow (GetDlgItem (GetParent (hwndDlg), IDC_NEXT), (GetWindowTextLength (GetDlgItem (hwndDlg, IDC_RESCUE_DISK_ISO_PATH)) > 1));
4567 EnableWindow (GetDlgItem (GetParent (hwndDlg), IDC_PREV), TRUE); 4568 EnableWindow (GetDlgItem (GetParent (hwndDlg), IDC_PREV), TRUE);