aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/conversation_api.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-10 17:09:45 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-10 17:09:45 +0000
commit5d7d01298cfcde6516cecac01f6bfff31bc20461 (patch)
treeb755a0535a68d3f2f1df4ad266e256954abe2472 /src/conversation/conversation_api.c
parent42c354283221489bf52e0ab4fcc6617e0d691934 (diff)
downloadgnunet-5d7d01298cfcde6516cecac01f6bfff31bc20461.tar.gz
gnunet-5d7d01298cfcde6516cecac01f6bfff31bc20461.zip
-fix eddsa api migration
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 50ee0a23a..4f182d63b 100644
--- a/src/conversation/conversation_api.c
+++ b/src/conversation/conversation_api.c
@@ -124,12 +124,12 @@ struct GNUNET_CONVERSATION_Phone
124 /** 124 /**
125 * My GNS zone. 125 * My GNS zone.
126 */ 126 */
127 struct GNUNET_CRYPTO_EccPrivateKey my_zone; 127 struct GNUNET_CRYPTO_EcdsaPrivateKey my_zone;
128 128
129 /** 129 /**
130 * Identity of the person calling us (valid while in state #PS_RINGING). 130 * Identity of the person calling us (valid while in state #PS_RINGING).
131 */ 131 */
132 struct GNUNET_CRYPTO_EccPublicSignKey caller_id; 132 struct GNUNET_CRYPTO_EcdsaPublicKey caller_id;
133 133
134 /** 134 /**
135 * State machine for the phone. 135 * State machine for the phone.
@@ -159,7 +159,7 @@ reconnect_phone (struct GNUNET_CONVERSATION_Phone *phone);
159 */ 159 */
160static void 160static void
161handle_caller_name (void *cls, 161handle_caller_name (void *cls,
162 const struct GNUNET_CRYPTO_EccPrivateKey *zone, 162 const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
163 const char *label, 163 const char *label,
164 unsigned int rd_count, 164 unsigned int rd_count,
165 const struct GNUNET_NAMESTORE_RecordData *rd) 165 const struct GNUNET_NAMESTORE_RecordData *rd)
@@ -985,7 +985,7 @@ reconnect_call (struct GNUNET_CONVERSATION_Call *call)
985 0 }, 985 0 },
986 { NULL, 0, 0 } 986 { NULL, 0, 0 }
987 }; 987 };
988 struct GNUNET_CRYPTO_EccPublicSignKey my_zone; 988 struct GNUNET_CRYPTO_EcdsaPublicKey my_zone;
989 989
990 if (CS_ACTIVE == call->state) 990 if (CS_ACTIVE == call->state)
991 { 991 {