aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/test_conversation_api_twocalls.c
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2021-05-11 11:26:16 +0200
committerMartin Schanzenbach <mschanzenbach@posteo.de>2021-05-11 11:26:16 +0200
commit77fd866573c80dad544cc010fc3fd74ca9cddd93 (patch)
treed473fa15b5160ac49a959d130d61386cff1d6d7c /src/conversation/test_conversation_api_twocalls.c
parent78ad9a3344f8e833cf2c60d61b80dd2c8c6bd268 (diff)
downloadgnunet-77fd866573c80dad544cc010fc3fd74ca9cddd93.tar.gz
gnunet-77fd866573c80dad544cc010fc3fd74ca9cddd93.zip
-more conversation api fixes
Diffstat (limited to 'src/conversation/test_conversation_api_twocalls.c')
-rw-r--r--src/conversation/test_conversation_api_twocalls.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/conversation/test_conversation_api_twocalls.c b/src/conversation/test_conversation_api_twocalls.c
index ac7a3c9dd..9abf91d0b 100644
--- a/src/conversation/test_conversation_api_twocalls.c
+++ b/src/conversation/test_conversation_api_twocalls.c
@@ -524,7 +524,9 @@ 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", NULL, &caller_ego_create_cont, 527 op = GNUNET_IDENTITY_create (id, "caller-ego", NULL,
528 GNUNET_IDENTITY_TYPE_ECDSA,
529 &caller_ego_create_cont,
528 NULL); 530 NULL);
529} 531}
530 532
@@ -614,7 +616,9 @@ run (void *cls,
614 timeout_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_test, NULL); 616 timeout_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_test, NULL);
615 GNUNET_SCHEDULER_add_shutdown (&do_shutdown, NULL); 617 GNUNET_SCHEDULER_add_shutdown (&do_shutdown, NULL);
616 id = GNUNET_IDENTITY_connect (cfg, &identity_cb, NULL); 618 id = GNUNET_IDENTITY_connect (cfg, &identity_cb, NULL);
617 op = GNUNET_IDENTITY_create (id, "phone-ego", NULL, &phone_ego_create_cont, 619 op = GNUNET_IDENTITY_create (id, "phone-ego", NULL,
620 GNUNET_IDENTITY_TYPE_ECDSA,
621 &phone_ego_create_cont,
618 NULL); 622 NULL);
619 ns = GNUNET_NAMESTORE_connect (cfg); 623 ns = GNUNET_NAMESTORE_connect (cfg);
620} 624}