[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Richard Levitte
levitte at openssl.org
Mon Jun 20 19:26:34 UTC 2016
The branch OpenSSL_1_0_2-stable has been updated
via 482449624c6ca12d24f29eca0448eb589c50b0ec (commit)
from 398260af10445b7edc31dacefa96a909d4cc3c90 (commit)
- Log -----------------------------------------------------------------
commit 482449624c6ca12d24f29eca0448eb589c50b0ec
Author: Richard Levitte <levitte at openssl.org>
Date: Mon Jun 20 21:12:29 2016 +0200
Fix missing opening braces
Reviewed-by: Rich Salz <rsalz at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
apps/req.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/apps/req.c b/apps/req.c
index 9f1066f..46255f5 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;
More information about the openssl-commits
mailing list