[openssl-commits] [openssl] master update

Rich Salz rsalz at openssl.org
Fri Jan 22 16:48:58 UTC 2016


The branch master has been updated
       via  70c9f1c878502ccb717fbec54cecfc17187cf501 (commit)
      from  df7421ccb45fffc1dd81be6e1296fa8a3b512d10 (commit)


- Log -----------------------------------------------------------------
commit 70c9f1c878502ccb717fbec54cecfc17187cf501
Author: Marcus Meissner <meissner at suse.de>
Date:   Thu Dec 3 15:19:53 2015 +0100

    dsatest: use the correct BIO to print the test error
    
    Signed-off-by: Rich Salz <rsalz at openssl.org>
    Reviewed-by: Kurt Roeckx <kurt at openssl.org>

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

Summary of changes:
 test/dsatest.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/dsatest.c b/test/dsatest.c
index 8190e6f..1f2c259 100644
--- a/test/dsatest.c
+++ b/test/dsatest.c
@@ -248,7 +248,7 @@ static int dsa_cb(int p, int n, BN_GENCB *arg)
     (void)BIO_flush(BN_GENCB_get_arg(arg));
 
     if (!ok && (p == 0) && (num > 1)) {
-        BIO_printf((BIO *)arg, "error in dsatest\n");
+        BIO_printf(BN_GENCB_get_arg(arg), "error in dsatest\n");
         return 0;
     }
     return 1;


More information about the openssl-commits mailing list