summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2021-06-21 21:08:08 +0200
committerBram Moolenaar <Bram@vim.org>2021-06-21 21:08:08 +0200
commit226b28b96150e59375d2bff44e0aadd382b0c3f1 (patch)
treeca0225ef8907a75b2dcc0296f0378939bb53cb21 /src/errors.h
parent22f17a29cd0b0cc3107dc6cd1d96c62eee52a7d9 (diff)
patch 8.2.3032: build problems with MSVC, other crypt issues with libsodiumv8.2.3032
Problem: Build problems with MSVC, other crypt issues with libsodium. Solution: Adjust MSVC makefile. Disable swap file only when 'key' is set. Adjust error message used when key is wrong. Fix Coverity issues. (Christian Brabandt, closes #8420, closes #8411)
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/errors.h b/src/errors.h
index 9663ecdd69..8a2461b31e 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -443,6 +443,6 @@ EXTERN char e_libsodium_decryption_failed_header_incomplete[]
EXTERN char e_libsodium_cannot_decrypt_buffer[]
INIT(= N_("E1199: Cannot decrypt buffer, not enough space"));
EXTERN char e_libsodium_decryption_failed[]
- INIT(= N_("E1200: Decryption failed: corrupted chunk!"));
+ INIT(= N_("E1200: Decryption failed!"));
EXTERN char e_libsodium_decryption_failed_premature[]
INIT(= N_("E1201: Decryption failed: pre-mature end of file!"));