aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/conversation_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/conversation/conversation_api.c')
-rw-r--r--src/conversation/conversation_api.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/conversation/conversation_api.c b/src/conversation/conversation_api.c
index 9c4c520be..ed22bf9cf 100644
--- a/src/conversation/conversation_api.c
+++ b/src/conversation/conversation_api.c
@@ -105,7 +105,7 @@ struct GNUNET_CONVERSATION_Caller
105 /** 105 /**
106 * Identity of the person calling us. 106 * Identity of the person calling us.
107 */ 107 */
108 struct GNUNET_IDENTITY_PublicKey caller_id; 108 struct GNUNET_CRYPTO_PublicKey caller_id;
109 109
110 /** 110 /**
111 * Internal handle to identify the caller with the service. 111 * Internal handle to identify the caller with the service.
@@ -192,7 +192,7 @@ struct GNUNET_CONVERSATION_Phone
192 /** 192 /**
193 * My GNS zone. 193 * My GNS zone.
194 */ 194 */
195 struct GNUNET_IDENTITY_PrivateKey my_zone; 195 struct GNUNET_CRYPTO_PrivateKey my_zone;
196 196
197 /** 197 /**
198 * State machine for the phone. 198 * State machine for the phone.
@@ -263,7 +263,7 @@ handle_phone_ring (void *cls,
263{ 263{
264 struct GNUNET_CONVERSATION_Phone *phone = cls; 264 struct GNUNET_CONVERSATION_Phone *phone = cls;
265 struct GNUNET_CONVERSATION_Caller *caller; 265 struct GNUNET_CONVERSATION_Caller *caller;
266 struct GNUNET_IDENTITY_PublicKey caller_id; 266 struct GNUNET_CRYPTO_PublicKey caller_id;
267 size_t key_len; 267 size_t key_len;
268 size_t read; 268 size_t read;
269 269
@@ -276,7 +276,7 @@ handle_phone_ring (void *cls,
276 276
277 case PS_READY: 277 case PS_READY:
278 if ((GNUNET_SYSERR == 278 if ((GNUNET_SYSERR ==
279 GNUNET_IDENTITY_read_public_key_from_buffer (&ring[1], 279 GNUNET_CRYPTO_read_public_key_from_buffer (&ring[1],
280 key_len, 280 key_len,
281 &caller_id, 281 &caller_id,
282 &read)) || 282 &read)) ||