aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mesh/gnunet-service-mesh-enc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesh/gnunet-service-mesh-enc.c b/src/mesh/gnunet-service-mesh-enc.c
index c13907550..e2aa24497 100644
--- a/src/mesh/gnunet-service-mesh-enc.c
+++ b/src/mesh/gnunet-service-mesh-enc.c
@@ -3412,11 +3412,11 @@ channel_send_destroy (struct MeshChannel *ch)
3412 3412
3413 if (NULL != ch->owner) 3413 if (NULL != ch->owner)
3414 { 3414 {
3415 send_local_channel_destroy (t, GNUNET_NO); 3415 send_local_channel_destroy (ch, GNUNET_NO);
3416 } 3416 }
3417 if (NULL != ch->client) 3417 if (NULL != ch->client)
3418 { 3418 {
3419 send_local_channel_destroy (t, GNUNET_YES); 3419 send_local_channel_destroy (ch, GNUNET_YES);
3420 } 3420 }
3421} 3421}
3422 3422