diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-02-11 15:23:32 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-02-11 15:23:32 +0100 |
commit | 4d504a3e11c42ca1f7ad29848b943eb1537283cb (patch) | |
tree | 7e88578e269d2e34990859020c15042223351966 /src/proto | |
parent | 0a36fece9234d423aa5e35a8df1e33b3f79e9ede (diff) | |
download | vim-git-4d504a3e11c42ca1f7ad29848b943eb1537283cb.tar.gz |
updated for version 7.4.172v7.4.172
Problem: The blowfish code mentions output feedback, but the code is
actually doing cipher feedback.
Solution: Adjust names and comments.
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/blowfish.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/blowfish.pro b/src/proto/blowfish.pro index 51e4fa9ec..4d64e10e8 100644 --- a/src/proto/blowfish.pro +++ b/src/proto/blowfish.pro @@ -1,6 +1,6 @@ /* blowfish.c */ void bf_key_init __ARGS((char_u *password, char_u *salt, int salt_len)); -void bf_ofb_init __ARGS((char_u *iv, int iv_len)); +void bf_cfb_init __ARGS((char_u *iv, int iv_len)); void bf_crypt_encode __ARGS((char_u *from, size_t len, char_u *to)); void bf_crypt_decode __ARGS((char_u *ptr, long len)); void bf_crypt_init_keys __ARGS((char_u *passwd)); |