From 3337fc2a12c3703060cfd5d5eb9e859ba659e891 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Fri, 30 Nov 2018 17:38:35 +0200 Subject: [PATCH] OpenSSL: Include sha512.h to match function prototypes This gets rid of sparse warnings. Signed-off-by: Jouni Malinen --- src/crypto/crypto_openssl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/crypto/crypto_openssl.c b/src/crypto/crypto_openssl.c index f4cff43f3..f89053a89 100644 --- a/src/crypto/crypto_openssl.c +++ b/src/crypto/crypto_openssl.c @@ -29,6 +29,7 @@ #include "sha1.h" #include "sha256.h" #include "sha384.h" +#include "sha512.h" #include "md5.h" #include "aes_wrap.h" #include "crypto.h"