aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/test_conversation_api_twocalls.c
diff options
context:
space:
mode:
authorjospaeth <spaethj@in.tum.de>2020-05-26 09:08:09 +0200
committerjospaeth <spaethj@in.tum.de>2020-05-26 09:08:09 +0200
commit7b48b9e292ce90d1d663ca9ce7b2ccc95f0fd00e (patch)
tree79f47f5f7069bfed2bbfa28ed8274cea03976fd2 /src/conversation/test_conversation_api_twocalls.c
parent669aa594e6a4d06e2d77cdba5365f6992695f547 (diff)
parenta32de45ceffeb69038ecfa7b963f30b7fed83a41 (diff)
downloadgnunet-7b48b9e292ce90d1d663ca9ce7b2ccc95f0fd00e.tar.gz
gnunet-7b48b9e292ce90d1d663ca9ce7b2ccc95f0fd00e.zip
Merge branch 'spaeth/import_identity'
Diffstat (limited to 'src/conversation/test_conversation_api_twocalls.c')
-rw-r--r--src/conversation/test_conversation_api_twocalls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conversation/test_conversation_api_twocalls.c b/src/conversation/test_conversation_api_twocalls.c
index fab49f7d7..6d434a3e1 100644
--- a/src/conversation/test_conversation_api_twocalls.c
+++ b/src/conversation/test_conversation_api_twocalls.c
@@ -524,7 +524,7 @@ namestore_put_cont (void *cls, int32_t success, const char *emsg)
524 GNUNET_assert (GNUNET_YES == success); 524 GNUNET_assert (GNUNET_YES == success);
525 GNUNET_assert (NULL == emsg); 525 GNUNET_assert (NULL == emsg);
526 GNUNET_assert (NULL == op); 526 GNUNET_assert (NULL == op);
527 op = GNUNET_IDENTITY_create (id, "caller-ego", &caller_ego_create_cont, NULL); 527 op = GNUNET_IDENTITY_create (id, "caller-ego", NULL, &caller_ego_create_cont, NULL);
528} 528}
529 529
530 530
@@ -613,7 +613,7 @@ run (void *cls,
613 timeout_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_test, NULL); 613 timeout_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_test, NULL);
614 GNUNET_SCHEDULER_add_shutdown (&do_shutdown, NULL); 614 GNUNET_SCHEDULER_add_shutdown (&do_shutdown, NULL);
615 id = GNUNET_IDENTITY_connect (cfg, &identity_cb, NULL); 615 id = GNUNET_IDENTITY_connect (cfg, &identity_cb, NULL);
616 op = GNUNET_IDENTITY_create (id, "phone-ego", &phone_ego_create_cont, NULL); 616 op = GNUNET_IDENTITY_create (id, "phone-ego", NULL, &phone_ego_create_cont, NULL);
617 ns = GNUNET_NAMESTORE_connect (cfg); 617 ns = GNUNET_NAMESTORE_connect (cfg);
618} 618}
619 619