summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-03-04 02:29:19 +0100
committerIngo Molnar <mingo@elte.hu>2009-03-04 02:29:19 +0100
commit624657a6c814a324c3118534f26916a533692257 (patch)
tree67d7518fa95b2586aea0bf28f555a238f8e5b4ee
parent40fe245cafd0b5fbecadc4de293e290224869977 (diff)
parent9826ab928ad6e472630a2744731352a8f9db6489 (diff)
downloadlinux-crypto-624657a6c814a324c3118534f26916a533692257.tar.gz
linux-crypto-624657a6c814a324c3118534f26916a533692257.zip
Merge branch 'x86/core' into core/percpu
-rw-r--r--crypto/ahash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ahash.c b/crypto/ahash.c
index ba5292d6..b2d1ee32 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 = {