commit 65b5442f0d73248c310e9d310abf7fc9e78081c2
parent d790ce87cd79a8ca3db864a66e06667106188634
Author: Christian Grothoff <grothoff@gnunet.org>
Date: Fri, 14 Aug 2026 22:38:24 +0200
exit with failure on failure
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/auditor/taler-auditor-sync.c b/src/auditor/taler-auditor-sync.c
@@ -712,6 +712,7 @@ do_sync (void *cls)
{
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
"Failed to begin transaction with data source. Exiting\n");
+ global_ret = EXIT_FAILURE;
return;
}
if (GNUNET_SYSERR ==
@@ -719,6 +720,7 @@ do_sync (void *cls)
{
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
"Failed to begin transaction with data destination. Exiting\n");
+ global_ret = EXIT_FAILURE;
return;
}
ret = transact ();