From c040b4821dc850e1da892dd8b1612033041cf215 Mon Sep 17 00:00:00 2001 From: Milan Broz Date: Thu, 10 Jan 2013 15:37:26 +0100 Subject: [PATCH] Fix null blocks in kernel backend. --- lib/crypto_backend/crypto_kernel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/crypto_backend/crypto_kernel.c b/lib/crypto_backend/crypto_kernel.c index 681716d..9b26fb5 100644 --- a/lib/crypto_backend/crypto_kernel.c +++ b/lib/crypto_backend/crypto_kernel.c @@ -52,7 +52,7 @@ static struct hash_alg hash_algs[] = { { "sha512", "sha512", 64 }, { "ripemd160", "rmd160", 20 }, { "whirlpool", "wp512", 64 }, - { NULL, 0 } + { NULL, NULL, 0 } }; struct crypt_hash { -- 2.7.4