From b2d8799af1b09b67779df3fd71b84ec59f7e9f7e Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Thu, 7 Jan 2021 10:40:01 +0100 Subject: work on #6679" --- src/auditor/taler-helper-auditor-aggregation.c | 27 +++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) (limited to 'src/auditor') diff --git a/src/auditor/taler-helper-auditor-aggregation.c b/src/auditor/taler-helper-auditor-aggregation.c index 5a144ddf9..830773c76 100644 --- a/src/auditor/taler-helper-auditor-aggregation.c +++ b/src/auditor/taler-helper-auditor-aggregation.c @@ -1480,24 +1480,33 @@ main (int argc, "timetravel"), GNUNET_GETOPT_OPTION_END }; + enum GNUNET_GenericReturnValue ret; /* force linker to link against libtalerutil; if we do not do this, the linker may "optimize" libtalerutil away and skip #TALER_OS_init(), which we do need */ (void) TALER_project_data_default (); + if (GNUNET_OK != + GNUNET_STRINGS_get_utf8_args (argc, argv, + &argc, &argv)) + return 4; GNUNET_assert (GNUNET_OK == GNUNET_log_setup ("taler-helper-auditor-aggregation", "MESSAGE", NULL)); - if (GNUNET_OK != - GNUNET_PROGRAM_run (argc, - argv, - "taler-helper-auditor-aggregation", - "Audit Taler exchange aggregation activity", - options, - &run, - NULL)) - return 1; + ret = GNUNET_PROGRAM_run ( + argc, + argv, + "taler-helper-auditor-aggregation", + gettext_noop ("Audit Taler exchange aggregation activity"), + options, + &run, + NULL); + GNUNET_free_nz ((void *) argv); + if (GNUNET_SYSERR == ret) + return 3; + if (GNUNET_NO == ret) + return 0; return global_ret; } -- cgit v1.2.3