diff options
Diffstat (limited to 'crypto/ahash.c')
-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 3887856c2dd6..793a27f2493e 100644 --- a/crypto/ahash.c +++ b/crypto/ahash.c | |||
@@ -404,7 +404,7 @@ static int crypto_ahash_report(struct sk_buff *skb, struct crypto_alg *alg) | |||
404 | { | 404 | { |
405 | struct crypto_report_hash rhash; | 405 | struct crypto_report_hash rhash; |
406 | 406 | ||
407 | snprintf(rhash.type, CRYPTO_MAX_ALG_NAME, "%s", "ahash"); | 407 | strncpy(rhash.type, "ahash", sizeof(rhash.type)); |
408 | 408 | ||
409 | rhash.blocksize = alg->cra_blocksize; | 409 | rhash.blocksize = alg->cra_blocksize; |
410 | rhash.digestsize = __crypto_hash_alg_common(alg)->digestsize; | 410 | rhash.digestsize = __crypto_hash_alg_common(alg)->digestsize; |