From 700af4cf0afd35a1083b028010ba3b192bf19bb6 Mon Sep 17 00:00:00 2001 From: Zefan Li Date: Sun, 11 Oct 2015 16:27:16 +0800 Subject: [PATCH] crypto: s390/ghash: Fix incorrect backport of a1cae34e23b1 Signed-off-by: Zefan Li --- arch/s390/crypto/ghash_s390.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/s390/crypto/ghash_s390.c b/arch/s390/crypto/ghash_s390.c index c2dac2e0e56aa..69b5a4b873e28 100644 --- a/arch/s390/crypto/ghash_s390.c +++ b/arch/s390/crypto/ghash_s390.c @@ -115,7 +115,7 @@ static int ghash_final(struct shash_desc *desc, u8 *dst) struct ghash_desc_ctx *dctx = shash_desc_ctx(desc); ghash_flush(dctx); - memcpy(dst, dtx->icv, GHASH_BLOCK_SIZE); + memcpy(dst, dctx->icv, GHASH_BLOCK_SIZE); return 0; } -- 2.47.2