From 546ca2f4f5f7e26f7352116754e77f63804b78a6 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 27 Feb 2019 09:53:17 +0100 Subject: [PATCH] The use of the likes of UINT32_MAX requires internal/numbers.h Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/8354) --- crypto/evp/pbe_scrypt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto/evp/pbe_scrypt.c b/crypto/evp/pbe_scrypt.c index 722402528a..cad0440e5d 100644 --- a/crypto/evp/pbe_scrypt.c +++ b/crypto/evp/pbe_scrypt.c @@ -10,6 +10,7 @@ #include #include #include +#include "internal/numbers.h" #ifndef OPENSSL_NO_SCRYPT -- 2.40.0