summaryrefslogtreecommitdiff
path: root/cf/crypto.m4
diff options
context:
space:
mode:
authorLove Hörnquist Åstrand <lha@kth.se>2007-11-16 11:10:54 +0000
committerLove Hörnquist Åstrand <lha@kth.se>2007-11-16 11:10:54 +0000
commitb57bbebd7cf66bdb81cb5a25ad4145556efa0f04 (patch)
tree2133a8fb39b71822e472da8072e62307dee45f0f /cf/crypto.m4
parentce00901078f8d520fd58d55807df758553325769 (diff)
Cast 0 to EVP_CIPHER_iv_length to (EVP_CIPHER *).
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22080 ec53bebd-3082-4978-b11e-865c3cabbd6b
Diffstat (limited to 'cf/crypto.m4')
-rw-r--r--cf/crypto.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/cf/crypto.m4 b/cf/crypto.m4
index f06703309..5d965cbfc 100644
--- a/cf/crypto.m4
+++ b/cf/crypto.m4
@@ -46,7 +46,7 @@ m4_define([test_body], [
MD5_Init(&md5);
SHA1_Init(&sha1);
SHA256_Init(&sha256);
- EVP_CIPHER_iv_length(0);
+ EVP_CIPHER_iv_length(((EVP_CIPHER*)0));
#ifdef HAVE_OPENSSL
RAND_status();
UI_UTIL_read_pw_string(0,0,0,0);