From: Richard Levitte Date: Mon, 17 May 2021 20:58:27 +0000 (+0200) Subject: Make sure to include "crypto/ctype.h" to get ossl_isdigit() X-Git-Tag: openssl-3.0.0-alpha17~38 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bf991b25caa6e915d858dd56c98ee774f248f03c;p=thirdparty%2Fopenssl.git Make sure to include "crypto/ctype.h" to get ossl_isdigit() Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/15319) --- diff --git a/engines/e_loader_attic.c b/engines/e_loader_attic.c index 4cb98280a53..faa598f85ef 100644 --- a/engines/e_loader_attic.c +++ b/engines/e_loader_attic.c @@ -33,6 +33,7 @@ #include "internal/asn1.h" /* For asn1_d2i_read_bio */ #include "internal/o_dir.h" #include "internal/cryptlib.h" +#include "crypto/ctype.h" /* For ossl_isdigit */ #include "crypto/pem.h" /* For PVK and "blob" PEM headers */ #include "e_loader_attic_err.c" diff --git a/providers/implementations/storemgmt/file_store.c b/providers/implementations/storemgmt/file_store.c index b9bb3b36c03..04021f49c28 100644 --- a/providers/implementations/storemgmt/file_store.c +++ b/providers/implementations/storemgmt/file_store.c @@ -26,6 +26,7 @@ #include "internal/cryptlib.h" #include "internal/o_dir.h" #include "crypto/decoder.h" +#include "crypto/ctype.h" /* ossl_isdigit() */ #include "prov/implementations.h" #include "prov/bio.h" #include "file_store_local.h"