From 9c87af8e7058255630531f2f00e5cd42fe14ef2b Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Wed, 22 Aug 2001 22:25:45 +0000 Subject: [PATCH] cannot use NULL, so 0 will have to do git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@10527 ec53bebd-3082-4978-b11e-865c3cabbd6b --- cf/crypto.m4 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cf/crypto.m4 b/cf/crypto.m4 index 764ebda99..80adb29cc 100644 --- a/cf/crypto.m4 +++ b/cf/crypto.m4 @@ -45,8 +45,8 @@ if test "$crypto_lib" = "unknown" -a "$with_openssl" != "no"; then MD5_Init(&md5); SHA1_Init(&sha1); - des_cbc_encrypt(NULL, NULL, 0, NULL, NULL, 0); - RC4(NULL, 0, NULL, NULL); + des_cbc_encrypt(0, 0, 0, 0, 0, 0); + RC4(0, 0, 0, 0); ], [ crypto_lib=libcrypto AC_DEFINE([HAVE_OPENSSL], 1, [define to use openssl's libcrypto]) @@ -88,8 +88,8 @@ if test "$crypto_lib" = "unknown" -a "$with_krb4" != "no"; then MD5_Init(&md5); SHA1_Init(&sha1); - des_cbc_encrypt(NULL, NULL, 0, NULL, NULL, 0); - RC4(NULL, 0, NULL, NULL); + des_cbc_encrypt(0, 0, 0, 0, 0, 0); + RC4(0, 0, 0, 0); ], [crypto_lib=krb4; AC_MSG_RESULT([krb4's libdes])]) fi