From be1dc984e1a5938170188cbdb6e536f1e7ac1656 Mon Sep 17 00:00:00 2001 From: Patrick Steuer Date: Tue, 25 Jun 2019 00:10:20 +0200 Subject: [PATCH] Fix s390x build errors and warnings Signed-off-by: Patrick Steuer Reviewed-by: Tim Hudson Reviewed-by: Shane Lontis (Merged from https://github.com/openssl/openssl/pull/9236) --- providers/common/digests/sha3_prov.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/providers/common/digests/sha3_prov.c b/providers/common/digests/sha3_prov.c index 278ddfb855..15cd670a0e 100644 --- a/providers/common/digests/sha3_prov.c +++ b/providers/common/digests/sha3_prov.c @@ -142,6 +142,7 @@ static int s390x_sha3_final(unsigned char *md, void *vctx) s390x_klmd(ctx->buf, ctx->bufsz, NULL, 0, ctx->pad, ctx->A); memcpy(md, ctx->A, ctx->md_size); + return 1; } static int s390x_shake_final(unsigned char *md, void *vctx) @@ -184,7 +185,7 @@ static void *name##_newctx(void *provctx) \ if (ctx == NULL) \ return NULL; \ sha3_init(ctx, pad, bitlen); \ - SHA3_SET_MD(name, typ) \ + SHA3_SET_MD(uname, typ) \ return ctx; \ } -- 2.25.1