aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/shash.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/shash.c')
-rw-r--r--crypto/shash.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/shash.c b/crypto/shash.c
index 21fc12e2378f..32067f47e6c7 100644
--- a/crypto/shash.c
+++ b/crypto/shash.c
@@ -534,9 +534,9 @@ static int crypto_shash_report(struct sk_buff *skb, struct crypto_alg *alg)
534 rhash.blocksize = alg->cra_blocksize; 534 rhash.blocksize = alg->cra_blocksize;
535 rhash.digestsize = salg->digestsize; 535 rhash.digestsize = salg->digestsize;
536 536
537 NLA_PUT(skb, CRYPTOCFGA_REPORT_HASH, 537 if (nla_put(skb, CRYPTOCFGA_REPORT_HASH,
538 sizeof(struct crypto_report_hash), &rhash); 538 sizeof(struct crypto_report_hash), &rhash))
539 539 goto nla_put_failure;
540 return 0; 540 return 0;
541 541
542nla_put_failure: 542nla_put_failure: