summaryrefslogtreecommitdiffstats
path: root/providers/implementations
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2021-05-17 22:58:27 +0200
committerRichard Levitte <levitte@openssl.org>2021-05-19 12:41:34 +0200
commitbf991b25caa6e915d858dd56c98ee774f248f03c (patch)
tree062579e900471896f590fc3729764986f0bdabc8 /providers/implementations
parentd2f53212933f751ef76acca9cc05bcb67d799964 (diff)
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 'providers/implementations')
-rw-r--r--providers/implementations/storemgmt/file_store.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/providers/implementations/storemgmt/file_store.c b/providers/implementations/storemgmt/file_store.c
index b9bb3b36c0..04021f49c2 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"