[openssl-commits] [openssl] OpenSSL_1_1_0-stable update

Kurt Roeckx kurt at openssl.org
Mon Jan 16 03:51:08 UTC 2017


The branch OpenSSL_1_1_0-stable has been updated
       via  98bdd4363bd657304d88fb4b64a684e26c66b774 (commit)
      from  c565e99a14bf43f11d006d36612fe7943f9e817f (commit)


- Log -----------------------------------------------------------------
commit 98bdd4363bd657304d88fb4b64a684e26c66b774
Author: Kurt Roeckx <kurt at roeckx.be>
Date:   Mon Jan 16 00:04:31 2017 +0100

    Add missing braces.
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    GH: #2234
    (cherry picked from commit c4a60150914fc260c3fc2854e13372c870bdde76)

-----------------------------------------------------------------------

Summary of changes:
 crypto/x509/t_x509.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/crypto/x509/t_x509.c b/crypto/x509/t_x509.c
index 5119c0e..eb65d88 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 {


More information about the openssl-commits mailing list