summaryrefslogtreecommitdiff
path: root/cf/crypto.m4
diff options
context:
space:
mode:
authorAssar Westerlund <assar@sics.se>2001-08-22 22:25:45 +0000
committerAssar Westerlund <assar@sics.se>2001-08-22 22:25:45 +0000
commit9c87af8e7058255630531f2f00e5cd42fe14ef2b (patch)
tree1748c8c8dcf24fa2c79c470621cdc420bfe20b43 /cf/crypto.m4
parent93b5639e63ceae64f9f2e58ece0154c07a483323 (diff)
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
Diffstat (limited to 'cf/crypto.m4')
-rw-r--r--cf/crypto.m48
1 files 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