aboutsummaryrefslogtreecommitdiff
path: root/src/ats-tests/ats-testing.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ats-tests/ats-testing.c')
-rw-r--r--src/ats-tests/ats-testing.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ats-tests/ats-testing.c b/src/ats-tests/ats-testing.c
index 1bcef5806..326d3bdd4 100644
--- a/src/ats-tests/ats-testing.c
+++ b/src/ats-tests/ats-testing.c
@@ -384,7 +384,7 @@ core_connect_adapter (void *cls,
384 GNUNET_MQ_handler_end () 384 GNUNET_MQ_handler_end ()
385 }; 385 };
386 386
387 me->ch = GNUNET_CORE_connecT (cfg, 387 me->ch = GNUNET_CORE_connect (cfg,
388 me, 388 me,
389 NULL, 389 NULL,
390 &comm_connect_cb, 390 &comm_connect_cb,
@@ -403,7 +403,7 @@ core_disconnect_adapter (void *cls,
403{ 403{
404 struct BenchmarkPeer *me = cls; 404 struct BenchmarkPeer *me = cls;
405 405
406 GNUNET_CORE_disconnecT (me->ch); 406 GNUNET_CORE_disconnect (me->ch);
407 me->ch = NULL; 407 me->ch = NULL;
408} 408}
409 409