summaryrefslogtreecommitdiffstats
path: root/apps/ca.c
diff options
context:
space:
mode:
authorRobert Scheck <robert@fedoraproject.org>2017-02-09 22:20:59 +0100
committerRich Salz <rsalz@openssl.org>2017-02-14 14:15:28 -0500
commit20967afb7f4a2613a6d7230bcbdf99140bccd677 (patch)
tree8072b09042bd4c66aed7f1e4b81426717e1ae9c8 /apps/ca.c
parentb08ee30bf4fb3d0c92d838778332b7a3afbdb062 (diff)
Add Sieve support (RFC 5804) to s_client ("-starttls sieve")
Reviewed-by: Andy Polyakov <appro@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2300)
Diffstat (limited to 'apps/ca.c')
-rw-r--r--apps/ca.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/ca.c b/apps/ca.c
index 030f8b1d3d..8329884612 100644
--- a/apps/ca.c
+++ b/apps/ca.c
@@ -2141,8 +2141,7 @@ static int get_certificate_status(const char *serial, CA_DB *db)
}
/* Make it Upper Case */
- for (i = 0; row[DB_serial][i] != '\0'; i++)
- row[DB_serial][i] = toupper((unsigned char)row[DB_serial][i]);
+ make_uppercase(row[DB_serial]);
ok = 1;