summaryrefslogtreecommitdiffstats
path: root/crypto/ctype.c
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2021-03-09 09:48:16 +1000
committerShane Lontis <shane.lontis@oracle.com>2021-03-18 17:52:37 +1000
commitadf7e6d1d63890f037625031789ed042187c3947 (patch)
tree48c61a773e33b6df45664d1a46e8be54e0a9092d /crypto/ctype.c
parent1335ca4b0799d1714a2f8e21525cb23edf660e93 (diff)
Add ossl_asn1 symbols
Partial fix for #12964 Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14473)
Diffstat (limited to 'crypto/ctype.c')
-rw-r--r--crypto/ctype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ctype.c b/crypto/ctype.c
index dbd7891399..8612415b9b 100644
--- a/crypto/ctype.c
+++ b/crypto/ctype.c
@@ -273,7 +273,7 @@ int ossl_toupper(int c)
return ossl_islower(c) ? c ^ case_change : c;
}
-int ascii_isdigit(const char inchar) {
+int ossl_ascii_isdigit(const char inchar) {
if (inchar > 0x2F && inchar < 0x3A)
return 1;
return 0;