summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-06-20 21:12:29 +0200
committerRichard Levitte <levitte@openssl.org>2016-06-20 21:26:31 +0200
commit482449624c6ca12d24f29eca0448eb589c50b0ec (patch)
tree4d92fc27ca17ebfc8f356369f13a2b93467c7e8c /apps
parent398260af10445b7edc31dacefa96a909d4cc3c90 (diff)
Fix missing opening braces
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'apps')
-rw-r--r--apps/req.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/req.c b/apps/req.c
index 9f1066f616..46255f5fe6 100644
--- a/apps/req.c
+++ b/apps/req.c
@@ -1331,9 +1331,9 @@ static int auto_info(X509_REQ *req, STACK_OF(CONF_VALUE) *dn_sk,
break;
}
#ifndef CHARSET_EBCDIC
- if (*type == '+')
+ if (*type == '+') {
#else
- if (*type == os_toascii['+'])
+ if (*type == os_toascii['+']) {
#endif
type++;
mval = -1;