VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2017-06-23 16:57:45 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2017-06-23 19:05:46 +0200
commit9efdf8ffca8d01aadb0ef03ccab46e3dc427a86a (patch)
tree7a942038b2bfc30fa8c387170bbb37373a697629 /src
parent2be3b020028aa379670fa3abae749b89a195e1f1 (diff)
downloadVeraCrypt-9efdf8ffca8d01aadb0ef03ccab46e3dc427a86a.tar.gz
VeraCrypt-9efdf8ffca8d01aadb0ef03ccab46e3dc427a86a.zip
Linux/MacOSX: fix missing namespace in call to Cipher::IsHwSupportEnabled
Diffstat (limited to 'src')
-rw-r--r--src/Volume/Cipher.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Volume/Cipher.cpp b/src/Volume/Cipher.cpp
index 1b5df79f..da8e30d8 100644
--- a/src/Volume/Cipher.cpp
+++ b/src/Volume/Cipher.cpp
@@ -35,7 +35,7 @@ extern "C" int IsAesHwCpuSupported ()
state = g_hasAESNI ? true : false;
stateValid = true;
}
- return state && Cipher::IsHwSupportEnabled();
+ return state && VeraCrypt::Cipher::IsHwSupportEnabled();
#else
return false;
#endif