diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-06-07 21:31:10 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-11-08 23:19:24 +0100 |
commit | be4ca4bac6db00538d1990ca865b55ecf2357926 (patch) | |
tree | b777d73393966b1a727efaa9cd07a1ba15961bed /src/Platform/Unix | |
parent | 0c95ed36910c4f5cb08da45fac1930afcb25c565 (diff) | |
download | VeraCrypt-be4ca4bac6db00538d1990ca865b55ecf2357926.tar.gz VeraCrypt-be4ca4bac6db00538d1990ca865b55ecf2357926.zip |
Replace TrueCrypt from Linux/MacOSX mount point names
Diffstat (limited to 'src/Platform/Unix')
-rw-r--r-- | src/Platform/Unix/File.cpp | 2 |
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; |