VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Platform/Unix/File.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Platform/Unix/File.cpp')
-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
@@ -38,9 +38,9 @@ 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;
s << path << ": " << (write ? "W " : "R ") << (position == -1 ? lseek (fileHandle, 0, SEEK_CUR) : position) << " (" << length << ")";