diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-07-05 14:30:27 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-07-05 14:30:27 +0000 |
commit | 7cc1399a5bef38587eb4cc850a16cc96e1722b08 (patch) | |
tree | b0bb88a00dab98711538faa1537cc719405f1383 /src/conversation | |
parent | 439fed4dda3de557a37de85c08be9ac29746e6b7 (diff) |
fix type -- caught by new MQ logic
Diffstat (limited to 'src/conversation')
-rw-r--r-- | src/conversation/gnunet-service-conversation.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/conversation/gnunet-service-conversation.c b/src/conversation/gnunet-service-conversation.c index d12fbdc566..425f0a3c2f 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, |