aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2013-08-02 00:01:49 +0000
committerBart Polot <bart@net.in.tum.de>2013-08-02 00:01:49 +0000
commita6d8bc60967075b4fb9fcabaf19da4de09569abe (patch)
treeea52f02fd14c0d07b702513f2dbd520c71720a70 /src
parent8aa5b2e7fe52ea6bf1682b49a4aeeb58d1d8eb5b (diff)
downloadgnunet-a6d8bc60967075b4fb9fcabaf19da4de09569abe.tar.gz
gnunet-a6d8bc60967075b4fb9fcabaf19da4de09569abe.zip
- fix
Diffstat (limited to 'src')
-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