diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-07-20 13:15:28 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-11-08 23:21:38 +0100 |
commit | 1ddae209326858f1c244a4b52ba2bd068cc8985a (patch) | |
tree | a1d3d9f62334a59ca05194fe7b73c7297a7bfc33 /src | |
parent | a5c1978eefe2fd0dbf1ab6b7cdcb019a9b913a40 (diff) | |
download | VeraCrypt-1ddae209326858f1c244a4b52ba2bd068cc8985a.tar.gz VeraCrypt-1ddae209326858f1c244a4b52ba2bd068cc8985a.zip |
Correct Linux compilation after removing legacy cryptographic code.
Diffstat (limited to 'src')
-rw-r--r-- | src/Main/TextUserInterface.cpp | 2 | ||||
-rw-r--r-- | src/Volume/Volume.make | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/Main/TextUserInterface.cpp b/src/Main/TextUserInterface.cpp index 12647707..d83515f3 100644 --- a/src/Main/TextUserInterface.cpp +++ b/src/Main/TextUserInterface.cpp | |||
@@ -1183,7 +1183,7 @@ namespace VeraCrypt | |||
1183 | 1183 | ||
1184 | #ifdef TC_LINUX | 1184 | #ifdef TC_LINUX |
1185 | if (!Preferences.NonInteractive && !Preferences.DisableKernelEncryptionModeWarning | 1185 | if (!Preferences.NonInteractive && !Preferences.DisableKernelEncryptionModeWarning |
1186 | && volume->EncryptionModeName != L"XTS" | 1186 | && volume->EncryptionModeName != L"XTS") |
1187 | { | 1187 | { |
1188 | ShowWarning (LangString["ENCRYPTION_MODE_NOT_SUPPORTED_BY_KERNEL"]); | 1188 | ShowWarning (LangString["ENCRYPTION_MODE_NOT_SUPPORTED_BY_KERNEL"]); |
1189 | } | 1189 | } |
diff --git a/src/Volume/Volume.make b/src/Volume/Volume.make index 528e8876..25c18441 100644 --- a/src/Volume/Volume.make +++ b/src/Volume/Volume.make | |||
@@ -10,8 +10,6 @@ OBJS := | |||
10 | OBJS += Cipher.o | 10 | OBJS += Cipher.o |
11 | OBJS += EncryptionAlgorithm.o | 11 | OBJS += EncryptionAlgorithm.o |
12 | OBJS += EncryptionMode.o | 12 | OBJS += EncryptionMode.o |
13 | OBJS += EncryptionModeCBC.o | ||
14 | OBJS += EncryptionModeLRW.o | ||
15 | OBJS += EncryptionModeXTS.o | 13 | OBJS += EncryptionModeXTS.o |
16 | OBJS += EncryptionTest.o | 14 | OBJS += EncryptionTest.o |
17 | OBJS += EncryptionThreadPool.o | 15 | OBJS += EncryptionThreadPool.o |