exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit bdbe923bf627348113866d1d79cbd65aa2c132df
parent 9b470d246231d2e399d4cd27f01d87975832f343
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun, 22 Mar 2020 14:51:36 +0100

check for right type

Diffstat:
Msrc/auditor/report-lib.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/auditor/report-lib.c b/src/auditor/report-lib.c @@ -388,9 +388,9 @@ TALER_ARL_setup_sessions_and_run (TALER_ARL_Analysis ana, return GNUNET_SYSERR; } - GNUNET_break (GNUNET_SYSERR != - transact (ana, - ana_cls)); + if (0 > transact (ana, + ana_cls)) + return GNUNET_SYSERR; return GNUNET_OK; }