From 09b512676542f09bcfb23c8c26a681ee2fd63288 Mon Sep 17 00:00:00 2001 From: Bart Polot Date: Thu, 12 Dec 2013 18:50:03 +0000 Subject: [PATCH] - only complain if channel is not being destroyed (client has forgotten about it already) --- src/mesh/gnunet-service-mesh_channel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesh/gnunet-service-mesh_channel.c b/src/mesh/gnunet-service-mesh_channel.c index ff2d822bc..3b12eb832 100644 --- a/src/mesh/gnunet-service-mesh_channel.c +++ b/src/mesh/gnunet-service-mesh_channel.c @@ -1877,7 +1877,7 @@ GMCH_handle_data (struct MeshChannel *ch, if (NULL == c) { - GNUNET_break (0); + GNUNET_break (GNUNET_NO != ch->destroy); return; } -- 2.25.1