summaryrefslogtreecommitdiffstats
path: root/libtomcrypt/hashes/hash_memory.c
diff options
context:
space:
mode:
authorMiloslav Trmač <mitr@redhat.com>2010-08-25 05:47:28 +0200
committerMiloslav Trmač <mitr@redhat.com>2010-08-25 05:47:28 +0200
commit7f6e65351ae2c214f28496609103711773721ca5 (patch)
tree29c1ce2f7f8c149700bb13c4b8dbf06723dc4ab8 /libtomcrypt/hashes/hash_memory.c
parentfb5c4437fbec88cd98074a0d76ce939de2cc530f (diff)
parentd2e5c1885639377eb06a03a852d05faf06b4a3c1 (diff)
downloadcryptodev-linux-7f6e65351ae2c214f28496609103711773721ca5.tar.gz
cryptodev-linux-7f6e65351ae2c214f28496609103711773721ca5.tar.xz
cryptodev-linux-7f6e65351ae2c214f28496609103711773721ca5.zip
Merge branch 'cleanups'
Diffstat (limited to 'libtomcrypt/hashes/hash_memory.c')
-rw-r--r--libtomcrypt/hashes/hash_memory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtomcrypt/hashes/hash_memory.c b/libtomcrypt/hashes/hash_memory.c
index a416de9..c6f5188 100644
--- a/libtomcrypt/hashes/hash_memory.c
+++ b/libtomcrypt/hashes/hash_memory.c
@@ -44,7 +44,7 @@ int hash_memory(const struct algo_properties_st *hash, const unsigned char *in,
return CRYPT_BUFFER_OVERFLOW;
}
- err = cryptodev_hash_init( &hdata, hash->kstr, 0, NULL, 0);
+ err = cryptodev_hash_init(&hdata, hash->kstr, NULL, 0);
if (err < 0) {
err = CRYPT_INVALID_HASH;
goto LBL_ERR;