From e8103edb06f6d763db87ec3015773d043c786585 Mon Sep 17 00:00:00 2001 From: Fang Date: Fri, 13 Jul 2018 15:55:37 +0200 Subject: [PATCH] Fix compile-time issue with OpenSSL version of SHA-1 jet. --- jets/e/sha1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jets/e/sha1.c b/jets/e/sha1.c index 2910c1fbe3..32aeb7da9f 100644 --- a/jets/e/sha1.c +++ b/jets/e/sha1.c @@ -33,7 +33,7 @@ CC_SHA1_Update(&ctx_h, fat_y, wid); CC_SHA1_Final(dig_y, &ctx_h); #else - SHA1_CTX ctx_h; + SHA_CTX ctx_h; SHA1_Init(&ctx_h); SHA1_Update(&ctx_h, fat_y, wid);