diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-02-23 22:38:20 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-02-23 22:38:20 (GMT) |
commit | ea5a42c22ee123dfc8fa34c421cf95d6235e54d9 (patch) | |
tree | e83d99cf672299bffd338f11d0b3536f654488ee | |
parent | d38e84ee39783e00bd0b83a8dd19e54709950912 (diff) | |
parent | bb402f16ecf9bcdb944b8fa730f0e43cae519673 (diff) | |
download | linux-fsl-qoriq-ea5a42c22ee123dfc8fa34c421cf95d6235e54d9.tar.xz |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6:
crypto: ahash - Fix digest size in /proc/crypto
-rw-r--r-- | crypto/ahash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ahash.c b/crypto/ahash.c index ba5292d..b2d1ee3 100644 --- a/crypto/ahash.c +++ b/crypto/ahash.c @@ -214,7 +214,7 @@ static void crypto_ahash_show(struct seq_file *m, struct crypto_alg *alg) seq_printf(m, "async : %s\n", alg->cra_flags & CRYPTO_ALG_ASYNC ? "yes" : "no"); seq_printf(m, "blocksize : %u\n", alg->cra_blocksize); - seq_printf(m, "digestsize : %u\n", alg->cra_hash.digestsize); + seq_printf(m, "digestsize : %u\n", alg->cra_ahash.digestsize); } const struct crypto_type crypto_ahash_type = { |