From 7cc1399a5bef38587eb4cc850a16cc96e1722b08 Mon Sep 17 00:00:00 2001
From: Christian Grothoff <christian@grothoff.org>
Date: Tue, 5 Jul 2016 14:30:27 +0000
Subject: [PATCH] fix type -- caught by new MQ logic

---
 src/conversation/gnunet-service-conversation.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/conversation/gnunet-service-conversation.c b/src/conversation/gnunet-service-conversation.c
index d12fbdc56..425f0a3c2 100644
--- a/src/conversation/gnunet-service-conversation.c
+++ b/src/conversation/gnunet-service-conversation.c
@@ -1059,7 +1059,7 @@ handle_cadet_pickup_message (void *cls,
 {
   struct Channel *ch = *channel_ctx;
   struct Line *line;
-  struct ClientPhonePickupMessage pick;
+  struct ClientPhonePickedupMessage pick;
 
   if (NULL == ch)
   {
@@ -1093,7 +1093,6 @@ handle_cadet_pickup_message (void *cls,
   }
   pick.header.size = htons (sizeof (pick));
   pick.header.type = htons (GNUNET_MESSAGE_TYPE_CONVERSATION_CS_PHONE_PICKED_UP);
-  pick.cid = ch->cid;
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
               "Sending PICKED UP message to client\n");
   GNUNET_SERVER_notification_context_unicast (nc,
-- 
2.25.1