VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Platform
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2014-06-07 21:31:10 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2014-11-08 23:19:24 +0100
commitbe4ca4bac6db00538d1990ca865b55ecf2357926 (patch)
treeb777d73393966b1a727efaa9cd07a1ba15961bed /src/Platform
parent0c95ed36910c4f5cb08da45fac1930afcb25c565 (diff)
downloadVeraCrypt-be4ca4bac6db00538d1990ca865b55ecf2357926.tar.gz
VeraCrypt-be4ca4bac6db00538d1990ca865b55ecf2357926.zip
Replace TrueCrypt from Linux/MacOSX mount point names
Diffstat (limited to 'src/Platform')
-rw-r--r--src/Platform/Unix/File.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Platform/Unix/File.cpp b/src/Platform/Unix/File.cpp
index d69cb1df..fd64eb2a 100644
--- a/src/Platform/Unix/File.cpp
+++ b/src/Platform/Unix/File.cpp
@@ -39,7 +39,7 @@ namespace TrueCrypt
static void TraceFileOperation (int fileHandle, FilePath filePath, bool write, uint64 length, int64 position = -1)
{
string path = filePath;
- if (path.empty() || path.find ("truecrypt_aux_mnt") != string::npos)
+ if (path.empty() || path.find ("veracrypt_aux_mnt") != string::npos)
return;
stringstream s;