challenger

OAuth 2.0-based authentication service that validates user can receive messages at a certain address
Log | Files | Refs | Submodules | README | LICENSE

commit 377fd24c32156f49700ddc90662197fcfba82b02
parent 562e98b23e0476816d12015e418016f7e881bf78
Author: Christian Grothoff <grothoff@gnunet.org>
Date:   Thu,  9 Jul 2026 22:12:56 +0200

log as error if table creation failed

Diffstat:
Msrc/challengerdb/test_challenger_db.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/challengerdb/test_challenger_db.c b/src/challengerdb/test_challenger_db.c @@ -80,8 +80,9 @@ run (void *cls) if (GNUNET_OK != CHALLENGERDB_create_tables (pg)) { - GNUNET_log (GNUNET_ERROR_TYPE_INFO, + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Creating tables failed\n"); + goto drop; } GNUNET_assert (GNUNET_OK == CHALLENGERDB_preflight (pg));