VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Volume/Volume.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Volume/Volume.cpp')
-rw-r--r--src/Volume/Volume.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Volume/Volume.cpp b/src/Volume/Volume.cpp
index 0acdbb2e..ead76ed9 100644
--- a/src/Volume/Volume.cpp
+++ b/src/Volume/Volume.cpp
@@ -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)
{