From 5b6199497d38ede171f81d59cdc7c3ae466b0915 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Mon, 24 Oct 2011 11:50:51 +0000 Subject: [PATCH] check return vals --- src/testing/test_testing_reconnect.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/testing/test_testing_reconnect.c b/src/testing/test_testing_reconnect.c index e9519ab3b..f317040fb 100644 --- a/src/testing/test_testing_reconnect.c +++ b/src/testing/test_testing_reconnect.c @@ -192,9 +192,9 @@ run (void *cls, char *const *args, const char *cfgfile, GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemon.\n"); #endif c1 = GNUNET_CONFIGURATION_create (); - GNUNET_CONFIGURATION_load (c1, "test_testing_connect_peer1.conf"); + GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (c1, "test_testing_connect_peer1.conf")); c2 = GNUNET_CONFIGURATION_create (); - GNUNET_CONFIGURATION_load (c2, "test_testing_connect_peer2.conf"); + GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (c2, "test_testing_connect_peer2.conf")); run_phase (); } -- 2.25.1