diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-06-08 00:49:06 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-11-08 23:19:34 +0100 |
commit | 31fd16979fa56eda856d93754b388e73eae69f9f (patch) | |
tree | f8353dc7617b5c481db92ee235f33d84b27fe62f /src/Volume | |
parent | 4d12001e10c3c7a1a97bf47428bdebfab54bac91 (diff) | |
download | VeraCrypt-31fd16979fa56eda856d93754b388e73eae69f9f.tar.gz VeraCrypt-31fd16979fa56eda856d93754b388e73eae69f9f.zip |
Change TrueCrypt to VeraCrypt in some comments
Diffstat (limited to 'src/Volume')
-rw-r--r-- | src/Volume/Volume.cpp | 4 |
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) { |