diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-09-15 23:12:56 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-09-16 01:33:16 +0200 |
commit | 52c7445a795a623bc326699a5c465e8fa5294425 (patch) | |
tree | f8f8e18295107d4e90c49243f51f3800154d596d /src/Format/Tcformat.c | |
parent | db80c0234236dc9beff60b4c47b5627dbfb99bd2 (diff) | |
download | VeraCrypt-52c7445a795a623bc326699a5c465e8fa5294425.tar.gz VeraCrypt-52c7445a795a623bc326699a5c465e8fa5294425.zip |
Windows: Correctly detect presence of CD/DVD recorder during the creation of Rescue Disk. Check only CD/DVD drives and removable media when looking for rescue disk during its verification.
Diffstat (limited to 'src/Format/Tcformat.c')
-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 7dd34196..54196dee 100644 --- a/src/Format/Tcformat.c +++ b/src/Format/Tcformat.c @@ -7779,7 +7779,7 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa }
retryCDDriveCheck:
- if (!bDontVerifyRescueDisk && !BootEncObj->IsCDDrivePresent())
+ if (!bDontVerifyRescueDisk && !BootEncObj->IsCDRecorderPresent())
{
char *multiChoiceStr[] = { 0, "CD_BURNER_NOT_PRESENT",
"CD_BURNER_NOT_PRESENT_WILL_STORE_ISO",
|