diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-01-04 00:54:24 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-01-04 00:55:36 +0100 |
commit | cbc28bd4fe5e1170952d87d80f5e752bf63bd940 (patch) | |
tree | 55bf85fd2bb4aa5d0fedc5be1b62f0b12fa1b12f /src/Main/TextUserInterface.cpp | |
parent | 9a31c238814a9e433a0b07b127503f56a9ac705a (diff) | |
download | VeraCrypt-cbc28bd4fe5e1170952d87d80f5e752bf63bd940.tar.gz VeraCrypt-cbc28bd4fe5e1170952d87d80f5e752bf63bd940.zip |
Linux/MacOSX: change cascade encryption naming format in the UI as it was done on Windows.
Diffstat (limited to 'src/Main/TextUserInterface.cpp')
-rw-r--r-- | src/Main/TextUserInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Main/TextUserInterface.cpp b/src/Main/TextUserInterface.cpp index 62fdc235..c1b17b2b 100644 --- a/src/Main/TextUserInterface.cpp +++ b/src/Main/TextUserInterface.cpp @@ -664,7 +664,7 @@ namespace VeraCrypt { if (!ea->IsDeprecated()) { - ShowString (StringFormatter (L" {0}) {1}\n", (uint32) encryptionAlgorithms.size() + 1, ea->GetName())); + ShowString (StringFormatter (L" {0}) {1}\n", (uint32) encryptionAlgorithms.size() + 1, ea->GetName(true))); encryptionAlgorithms.push_back (ea); } } |