Message ID | 20210121155513.539519-4-mic@digikod.net |
---|---|
State | New |
Headers | show |
Series | [v4,01/10] tools/certs: Add print-cert-tbs-hash.sh | expand |
diff --git a/certs/blacklist.c b/certs/blacklist.c index 6514f9ebc943..4e1a58170d5c 100644 --- a/certs/blacklist.c +++ b/certs/blacklist.c @@ -37,7 +37,7 @@ static int blacklist_vet_description(const char *desc) found_colon: desc++; for (; *desc; desc++) { - if (!isxdigit(*desc)) + if (!isxdigit(*desc) || isupper(*desc)) return -EINVAL; n++; }