VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Volume/Volume.cpp
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2014-06-08 00:49:06 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2014-11-08 23:19:34 +0100
commit31fd16979fa56eda856d93754b388e73eae69f9f (patch)
treef8353dc7617b5c481db92ee235f33d84b27fe62f /src/Volume/Volume.cpp
parent4d12001e10c3c7a1a97bf47428bdebfab54bac91 (diff)
downloadVeraCrypt-31fd16979fa56eda856d93754b388e73eae69f9f.tar.gz
VeraCrypt-31fd16979fa56eda856d93754b388e73eae69f9f.zip
Change TrueCrypt to VeraCrypt in some comments
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)
{