summaryrefslogtreecommitdiffstats
path: root/crypto/x509/t_x509.c
diff options
context:
space:
mode:
authorKurt Roeckx <kurt@roeckx.be>2017-01-16 00:04:31 +0100
committerKurt Roeckx <kurt@roeckx.be>2017-01-16 04:50:12 +0100
commitc4a60150914fc260c3fc2854e13372c870bdde76 (patch)
tree4ba49f8aa22d14f1c9581bf405b426c85d3bbd98 /crypto/x509/t_x509.c
parentc2ce477f1f3c0a98802fb087b0cf4b0a99ea2b1d (diff)
Add missing braces.
Reviewed-by: Richard Levitte <levitte@openssl.org> GH: #2234
Diffstat (limited to 'crypto/x509/t_x509.c')
-rw-r--r--crypto/x509/t_x509.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/x509/t_x509.c b/crypto/x509/t_x509.c
index 5119c0e6f7..eb65d88732 100644
--- a/crypto/x509/t_x509.c
+++ b/crypto/x509/t_x509.c
@@ -97,9 +97,10 @@ int X509_print_ex(BIO *bp, X509 *x, unsigned long nmflags,
if (bs->type == V_ASN1_NEG_INTEGER) {
ul = 0 - (unsigned long)l;
neg = "-";
- } else
+ } else {
ul = l;
neg = "";
+ }
if (BIO_printf(bp, " %s%lu (%s0x%lx)\n", neg, ul, neg, ul) <= 0)
goto err;
} else {