aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2013-06-25 23:40:14 +0000
committerBart Polot <bart@net.in.tum.de>2013-06-25 23:40:14 +0000
commitfee0c44cf30d884c1374af10bcb1f60606ca374e (patch)
tree6bf572c1d3651afe1ad9f4eeb5672e1b1e4e6c07
parent4340fe90fc88c79a1f90b52ced9acfef6719b8be (diff)
- fix unrelated bug in 2906 comments
-rw-r--r--src/mesh/mesh2_api.c2
-rw-r--r--src/mesh/test_mesh2_local.c2
2 files changed, 1 insertions, 3 deletions
diff --git a/src/mesh/mesh2_api.c b/src/mesh/mesh2_api.c
index c07040192e..bbb369c7b6 100644
--- a/src/mesh/mesh2_api.c
+++ b/src/mesh/mesh2_api.c
@@ -495,9 +495,7 @@ destroy_tunnel (struct GNUNET_MESH_Tunnel *t, int call_cleaner)
}
h = t->mesh;
- /* free all peer's ID */
GNUNET_CONTAINER_DLL_remove (h->tunnels_head, h->tunnels_tail, t);
- GNUNET_PEER_change_rc (t->peer, -1);
/* signal tunnel destruction */
if ( (NULL != h->cleaner) && (0 != t->peer) && (GNUNET_YES == call_cleaner) )
diff --git a/src/mesh/test_mesh2_local.c b/src/mesh/test_mesh2_local.c
index 68452ffdf2..7706851848 100644
--- a/src/mesh/test_mesh2_local.c
+++ b/src/mesh/test_mesh2_local.c
@@ -58,7 +58,7 @@ do_shutdown (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
}
if (NULL != t)
{
- GNUNET_MESH_tunnel_destroy(t);
+ GNUNET_MESH_tunnel_destroy (t);
}
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: D1\n");
if (NULL != mesh_peer_1)