summaryrefslogtreecommitdiffstats
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-01-18 22:48:34 +0100
committerBram Moolenaar <Bram@vim.org>2019-01-18 22:48:34 +0100
commit987411db9e4b76b524d0579db21074be0bffd61b (patch)
tree215f2c2b7c988b5572e645cbb52c73d65b6bad2a /src/structs.h
parent0314236aabcb2ca9d0b74074dadecf68d7c7ed5f (diff)
patch 8.1.0773: not all crypt code is testedv8.1.0773
Problem: Not all crypt code is tested. Solution: Disable unused crypt code. Add more test coverage.
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index 958a5d22e2..5f148a0ff5 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -1940,6 +1940,10 @@ typedef struct {
# define CRYPT_M_BF 1
# define CRYPT_M_BF2 2
# define CRYPT_M_COUNT 3 /* number of crypt methods */
+
+// Currently all crypt methods work inplace. If one is added that isn't then
+// define this.
+// # define CRYPT_NOT_INPLACE 1
#endif