Fix missing opening braces

Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
Richard Levitte 2016-06-20 21:12:29 +02:00
parent 398260af10
commit 482449624c

View file

@ -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;