diff options
author | Richard Levitte <levitte@openssl.org> | 2021-05-17 22:58:27 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2021-05-19 12:41:34 +0200 |
commit | bf991b25caa6e915d858dd56c98ee774f248f03c (patch) | |
tree | 062579e900471896f590fc3729764986f0bdabc8 /engines | |
parent | Make sure to include "internal/numbers.h" to get SIZE_MAX (diff) | |
download | openssl-bf991b25caa6e915d858dd56c98ee774f248f03c.tar.xz openssl-bf991b25caa6e915d858dd56c98ee774f248f03c.zip |
Make sure to include "crypto/ctype.h" to get ossl_isdigit()
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15319)
Diffstat (limited to 'engines')
-rw-r--r-- | engines/e_loader_attic.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/e_loader_attic.c b/engines/e_loader_attic.c index 4cb98280a5..faa598f85e 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" |