projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
df7421c
)
dsatest: use the correct BIO to print the test error
author
Marcus Meissner
<meissner@suse.de>
Thu, 3 Dec 2015 14:19:53 +0000
(15:19 +0100)
committer
Rich Salz
<rsalz@openssl.org>
Fri, 22 Jan 2016 16:48:51 +0000
(11:48 -0500)
Signed-off-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
test/dsatest.c
patch
|
blob
|
history
diff --git
a/test/dsatest.c
b/test/dsatest.c
index 8190e6f2eedad60e8789895cafbdd9dda8478b19..1f2c259fee8bf10a84110f19650dd5ad43bf269b 100644
(file)
--- 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;