From 742a87b2ebbed2f12573842d8641a4f0071974e6 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Tue, 24 Jan 2017 22:06:34 +0100 Subject: [PATCH] init mid_recv properly --- src/cadet/gnunet-service-cadet-new_channel.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cadet/gnunet-service-cadet-new_channel.c b/src/cadet/gnunet-service-cadet-new_channel.c index b97b2b577..600b5be15 100644 --- a/src/cadet/gnunet-service-cadet-new_channel.c +++ b/src/cadet/gnunet-service-cadet-new_channel.c @@ -578,6 +578,7 @@ GCCH_channel_local_new (struct CadetClient *owner, ccco->client_ready = GNUNET_YES; ch = GNUNET_new (struct CadetChannel); + ch->mid_recv.mid = htonl (1); /* The OPEN_ACK counts as message 0! */ ch->nobuffer = (0 != (options & GNUNET_CADET_OPTION_NOBUFFER)); ch->reliable = (0 != (options & GNUNET_CADET_OPTION_RELIABLE)); ch->out_of_order = (0 != (options & GNUNET_CADET_OPTION_OUT_OF_ORDER)); @@ -898,7 +899,7 @@ GCCH_bind (struct CadetChannel *ch, options); GNUNET_assert (ntohl (cccd->ccn.channel_of_client) < GNUNET_CADET_LOCAL_CHANNEL_ID_CLI); - ch->mid_recv.mid = htonl (1); /* The CONNECT counts as message 0! */ + ch->mid_recv.mid = htonl (1); /* The OPEN counts as message 0! */ if (GNUNET_YES == ch->is_loopback) { ch->state = CADET_CHANNEL_OPEN_SENT; -- 2.25.1