Fix missing opening braces
Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
398260af10
commit
482449624c
1 changed files with 2 additions and 2 deletions
|
@ -1331,9 +1331,9 @@ static int auto_info(X509_REQ *req, STACK_OF(CONF_VALUE) *dn_sk,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
#ifndef CHARSET_EBCDIC
|
#ifndef CHARSET_EBCDIC
|
||||||
if (*type == '+')
|
if (*type == '+') {
|
||||||
#else
|
#else
|
||||||
if (*type == os_toascii['+'])
|
if (*type == os_toascii['+']) {
|
||||||
#endif
|
#endif
|
||||||
type++;
|
type++;
|
||||||
mval = -1;
|
mval = -1;
|
||||||
|
|
Loading…
Reference in a new issue