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

Change TrueCrypt to VeraCrypt in some comments

This commit is contained in:
Mounir IDRASSI
2014-06-08 00:49:06 +02:00
parent 4d12001e10
commit 31fd16979f
2 changed files with 6 additions and 6 deletions

View File

@@ -275,7 +275,7 @@ namespace TrueCrypt
if (!partitionInSystemEncryptionScope && GetPath().IsDevice())
{
// Check if the device contains TrueCrypt Boot Loader
// Check if the device contains VeraCrypt Boot Loader
try
{
File driveDevice;
@@ -284,7 +284,7 @@ namespace TrueCrypt
Buffer mbr (VolumeFile->GetDeviceSectorSize());
driveDevice.ReadAt (mbr, 0);
// Search for the string "TrueCrypt"
// Search for the string "VeraCrypt"
size_t nameLen = strlen (TC_APP_NAME);
for (size_t i = 0; i < mbr.Size() - nameLen; ++i)
{