commit | 442b4225d3310599a8bc9107dc3f7b4153a286c4 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon May 24 21:34:22 2010 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Mon May 24 21:34:22 2010 +0200 |
tree | 518b9298185272fad43e5afbc8a7cde21dc867e8 | |
parent | e66194a54e0303568e7db1cb8772e2709afd864c [diff] [blame] |
Improve the MS-Windows installer.
diff --git a/src/blowfish.c b/src/blowfish.c index 02d9008..e449da3 100644 --- a/src/blowfish.c +++ b/src/blowfish.c
@@ -25,7 +25,7 @@ char_u uc[8]; } block8; -#ifdef WIN3264 +#if defined(WIN3264) || defined(DOS32) /* MS-Windows is always little endian */ #else # ifdef HAVE_CONFIG_H @@ -406,7 +406,7 @@ int keylen; key = sha256_key(password); - keylen = STRLEN(key); + keylen = (int)STRLEN(key); for (i = 0; i < 256; ++i) { sbx[0][i] = sbi[0][i];