From: Richard Levitte Date: Mon, 20 Jun 2016 19:12:29 +0000 (+0200) Subject: Fix missing opening braces X-Git-Tag: OpenSSL_1_0_2i~133 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=482449624c6ca12d24f29eca0448eb589c50b0ec Fix missing opening braces Reviewed-by: Rich Salz --- 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;