From: Alberto Leiva Popper Date: Sun, 16 Jan 2022 20:36:13 +0000 (-0600) Subject: log: Print libcrypto stack properly X-Git-Tag: 1.5.4~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b7480984dcd711870422749768587506fea359f0;p=thirdparty%2FFORT-validator.git log: Print libcrypto stack properly --- diff --git a/examples/tal/README.md b/examples/tal/README.md index 02f365b2..dd53c32d 100644 --- a/examples/tal/README.md +++ b/examples/tal/README.md @@ -6,5 +6,5 @@ Alternatively, you can just download them manually. To the best of my knowledge, - APNIC: https://www.apnic.net/community/security/resource-certification/tal-archive/ - ARIN: https://www.arin.net/resources/manage/rpki/tal/ - LACNIC: https://www.lacnic.net/4984/2/lacnic/rpki-rpki-trust-anchor -- RIPE-NCC: https://www.ripe.net/manage-ips-and-asns/resource-management/rpki/ripe-ncc-rpki-trust-anchor-structure +- RIPE NCC: https://www.ripe.net/manage-ips-and-asns/resource-management/rpki/ripe-ncc-rpki-trust-anchor-structure diff --git a/src/log.c b/src/log.c index 99091192..7ed560bd 100644 --- a/src/log.c +++ b/src/log.c @@ -554,7 +554,7 @@ static int log_crypto_error(const char *str, size_t len, void *_arg) { struct crypto_cb_arg *arg = _arg; - arg->error_fn(0, "-> %s", str); + arg->error_fn("-> %s", str); arg->stack_size++; return 1; }