diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-06-13 05:20:42 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-06-13 05:20:42 +0200 |
commit | 80794b1ce64b394fe6a1355ddd7159d1c97d6f48 (patch) | |
tree | bdd1db9f6f3d6934e8a3862ee2116f42d99db27b /src/proto.h | |
parent | 46f9d4960161284182b11240783f427816700ab1 (diff) | |
download | vim-git-80794b1ce64b394fe6a1355ddd7159d1c97d6f48.tar.gz |
Added salt to blowfish encryption.
Diffstat (limited to 'src/proto.h')
-rw-r--r-- | src/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto.h b/src/proto.h index 2b248a5e3..331365615 100644 --- a/src/proto.h +++ b/src/proto.h @@ -149,7 +149,7 @@ void qsort __ARGS((void *base, size_t elm_count, size_t elm_size, int (*cmp)(con # endif # include "regexp.pro" # include "screen.pro" -# ifdef FEAT_CRYPT +# if defined(FEAT_CRYPT) || defined(FEAT_PERSISTENT_UNDO) # include "sha256.pro" # endif # include "search.pro" |