aboutsummaryrefslogtreecommitdiff
path: root/src/transport/transport-testing.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/transport-testing.c')
-rw-r--r--src/transport/transport-testing.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/transport/transport-testing.c b/src/transport/transport-testing.c
index 8f75c8109..b3c3a9399 100644
--- a/src/transport/transport-testing.c
+++ b/src/transport/transport-testing.c
@@ -633,7 +633,12 @@ GNUNET_TRANSPORT_TESTING_init ()
633 /* Init testing the testing lib */ 633 /* Init testing the testing lib */
634 tth->tl_system = GNUNET_TESTING_system_create ("transport-testing", 634 tth->tl_system = GNUNET_TESTING_system_create ("transport-testing",
635 "127.0.0.1"); 635 "127.0.0.1");
636 636 if (NULL == tth->tl_system)
637 {
638 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Failed to initialize testing library!\n"));
639 GNUNET_free (tth);
640 return NULL;
641 }
637 642
638 tth->hostkey_data = NULL; 643 tth->hostkey_data = NULL;
639 const char *hostkeys_file = "../../contrib/testing_hostkeys.dat"; 644 const char *hostkeys_file = "../../contrib/testing_hostkeys.dat";