From 98089dfccfab3bbc47d8d0a31735d52822cd2307 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Sat, 18 Oct 2008 21:03:30 +0200 Subject: crypto: fix remaining strhex_to_data_blob callers. Jelmer, please check. Guenther --- lib/crypto/md4test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/crypto/md4test.c') diff --git a/lib/crypto/md4test.c b/lib/crypto/md4test.c index dddf9e61a0..a6080cff82 100644 --- a/lib/crypto/md4test.c +++ b/lib/crypto/md4test.c @@ -64,7 +64,7 @@ bool torture_local_crypto_md4(struct torture_context *torture) DATA_BLOB md4blob; data = data_blob_string_const(testarray[i].data); - md4blob = strhex_to_data_blob(testarray[i].md4); + md4blob = strhex_to_data_blob(NULL, testarray[i].md4); mdfour(md4, data.data, data.length); -- cgit