summaryrefslogtreecommitdiff
path: root/lib/crypto/md4test.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-10-18 21:03:30 +0200
committerGünther Deschner <gd@samba.org>2008-10-18 21:07:42 +0200
commit98089dfccfab3bbc47d8d0a31735d52822cd2307 (patch)
tree97bea9bfbb72701a468223c93d69e81552ceda74 /lib/crypto/md4test.c
parent17b12ee1837671075b255c7703416db017d517e8 (diff)
downloadsamba-98089dfccfab3bbc47d8d0a31735d52822cd2307.tar.gz
samba-98089dfccfab3bbc47d8d0a31735d52822cd2307.tar.bz2
samba-98089dfccfab3bbc47d8d0a31735d52822cd2307.zip
crypto: fix remaining strhex_to_data_blob callers.
Jelmer, please check. Guenther
Diffstat (limited to 'lib/crypto/md4test.c')
-rw-r--r--lib/crypto/md4test.c2
1 files changed, 1 insertions, 1 deletions
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);