aboutsummaryrefslogtreecommitdiff
path: root/src/revocation/test_revocation.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-01-10 17:38:29 +0100
committerChristian Grothoff <christian@grothoff.org>2017-01-10 17:38:29 +0100
commitbf5f92d9429a556f68c950df7be3dc25907e0d6c (patch)
tree640b74c6a12a53ccac9925eb05b9e6d644d7e748 /src/revocation/test_revocation.c
parent06c0c503acd9d523d4d18eeac862222a744db2ab (diff)
downloadgnunet-bf5f92d9429a556f68c950df7be3dc25907e0d6c.tar.gz
gnunet-bf5f92d9429a556f68c950df7be3dc25907e0d6c.zip
rename connecT -> connect now that the old API is dead
Diffstat (limited to 'src/revocation/test_revocation.c')
-rw-r--r--src/revocation/test_revocation.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/revocation/test_revocation.c b/src/revocation/test_revocation.c
index ba659d9d8..d3bbb879a 100644
--- a/src/revocation/test_revocation.c
+++ b/src/revocation/test_revocation.c
@@ -337,7 +337,7 @@ core_connect_adapter (void *cls,
337 struct TestPeer *me = cls; 337 struct TestPeer *me = cls;
338 338
339 me->cfg = cfg; 339 me->cfg = cfg;
340 me->ch = GNUNET_CORE_connecT (cfg, 340 me->ch = GNUNET_CORE_connect (cfg,
341 me, 341 me,
342 NULL, 342 NULL,
343 &connect_cb, 343 &connect_cb,
@@ -356,7 +356,7 @@ core_disconnect_adapter (void *cls,
356{ 356{
357 struct TestPeer *me = cls; 357 struct TestPeer *me = cls;
358 358
359 GNUNET_CORE_disconnecT (me->ch); 359 GNUNET_CORE_disconnect (me->ch);
360 me->ch = NULL; 360 me->ch = NULL;
361} 361}
362 362