exchange

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

commit 9b9b31f8c57254434e67815ad4ad7aeda7c6cc63
parent 18c468ee7709966fad4d55c24a58fbe08661d211
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue, 17 Mar 2026 00:04:14 +0100

-fix typos

Diffstat:
Msrc/util/test_helper_cs.c | 24++++++++++++------------
Msrc/util/test_helper_eddsa.c | 2+-
Msrc/util/test_helper_rsa.c | 2+-
3 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/src/util/test_helper_cs.c b/src/util/test_helper_cs.c @@ -1130,14 +1130,14 @@ main (int argc, GNUNET_free (libexec_dir); helper = GNUNET_process_create (GNUNET_OS_INHERIT_STD_ERR); if (GNUNET_OK != - GNUNET_process_run_command (helper, - binary_name, - binary_name, - "-c", - "test_helper_cs.conf", - "-L", - loglev, - NULL)) + GNUNET_process_run_command_va (helper, + binary_name, + binary_name, + "-c", + "test_helper_cs.conf", + "-L", + loglev, + NULL)) { GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "exec", @@ -1153,10 +1153,10 @@ main (int argc, GNUNET_process_kill (helper, SIGTERM)); if (GNUNET_OK != - GNUNET_process_wait_status (helper, - false, - &type, - &code)) + GNUNET_process_wait (helper, + true, + &type, + &code)) { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Helper process did not die voluntarily, killing hard\n"); diff --git a/src/util/test_helper_eddsa.c b/src/util/test_helper_eddsa.c @@ -532,7 +532,7 @@ main (int argc, SIGTERM)); if (GNUNET_OK != GNUNET_process_wait (helper, - false, + true, &type, &code)) { diff --git a/src/util/test_helper_rsa.c b/src/util/test_helper_rsa.c @@ -979,7 +979,7 @@ main (int argc, SIGTERM)); if (GNUNET_OK != GNUNET_process_wait (helper, - false, + true, &type, &code)) {