1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 19:08:26 -06:00

Change legacy version check in newly added Linux/MacOSX sources from 0x600 (TrueCrypt) to 0x10b

This commit is contained in:
Mounir IDRASSI
2014-06-16 19:11:12 +02:00
parent b9e34c30e8
commit b6dc9e9e15
4 changed files with 8 additions and 8 deletions

View File

@@ -194,7 +194,7 @@ namespace TrueCrypt
{
// Header decrypted
if (typeid (*layout) == typeid (VolumeLayoutV2Normal) && header->GetRequiredMinProgramVersion() < 0x600)
if (typeid (*layout) == typeid (VolumeLayoutV2Normal) && header->GetRequiredMinProgramVersion() < 0x10b)
{
// VolumeLayoutV1Normal has been opened as VolumeLayoutV2Normal
layout.reset (new VolumeLayoutV1Normal);