aboutsummaryrefslogtreecommitdiff
path: root/src/testbed/gnunet-service-testbed_oc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testbed/gnunet-service-testbed_oc.c')
-rw-r--r--src/testbed/gnunet-service-testbed_oc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testbed/gnunet-service-testbed_oc.c b/src/testbed/gnunet-service-testbed_oc.c
index eb49ff992..ccfdf162d 100644
--- a/src/testbed/gnunet-service-testbed_oc.c
+++ b/src/testbed/gnunet-service-testbed_oc.c
@@ -792,7 +792,7 @@ hello_update_cb (void *cls, const struct GNUNET_MessageHeader *hello)
792 LOG_DEBUG ("0x%llx: Received HELLO of %s\n", occ->op_id, 792 LOG_DEBUG ("0x%llx: Received HELLO of %s\n", occ->op_id,
793 GNUNET_i2s (&occ->peer_identity)); 793 GNUNET_i2s (&occ->peer_identity));
794 occ->hello = GNUNET_malloc (msize); 794 occ->hello = GNUNET_malloc (msize);
795 GST_hello_cache_add (&occ->peer_identity, hello); 795 GST_cache_add (&occ->peer_identity, hello);
796 memcpy (occ->hello, hello, msize); 796 memcpy (occ->hello, hello, msize);
797 GNUNET_TRANSPORT_get_hello_cancel (occ->ghh); 797 GNUNET_TRANSPORT_get_hello_cancel (occ->ghh);
798 occ->ghh = NULL; 798 occ->ghh = NULL;
@@ -837,7 +837,7 @@ core_startup_cb (void *cls, struct GNUNET_CORE_Handle *server,
837 LOG_DEBUG ("0x%llx: Acquiring HELLO of peer %s\n", occ->op_id, 837 LOG_DEBUG ("0x%llx: Acquiring HELLO of peer %s\n", occ->op_id,
838 GNUNET_i2s (&occ->peer_identity)); 838 GNUNET_i2s (&occ->peer_identity));
839 /* Lookup for HELLO in hello cache */ 839 /* Lookup for HELLO in hello cache */
840 if (NULL != (hello = GST_hello_cache_lookup (&occ->peer_identity))) 840 if (NULL != (hello = GST_cache_lookup (&occ->peer_identity)))
841 { 841 {
842 LOG_DEBUG ("0x%llx: HELLO of peer %s found in cache\n", occ->op_id, 842 LOG_DEBUG ("0x%llx: HELLO of peer %s found in cache\n", occ->op_id,
843 GNUNET_i2s (&occ->peer_identity)); 843 GNUNET_i2s (&occ->peer_identity));