aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-11-05 18:42:08 +0000
committerChristian Grothoff <christian@grothoff.org>2012-11-05 18:42:08 +0000
commit4c9dabf67e55ffff769ecc9392f3192e80cd9db9 (patch)
tree2b2f962500b24e0a4c652430b4e084b08db6d7b6 /src
parenta6a80e594d092334fc4f3a26f121c76df61a3a3b (diff)
downloadgnunet-4c9dabf67e55ffff769ecc9392f3192e80cd9db9.tar.gz
gnunet-4c9dabf67e55ffff769ecc9392f3192e80cd9db9.zip
-fix fix
Diffstat (limited to 'src')
-rw-r--r--src/mesh/gnunet-service-mesh-new.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesh/gnunet-service-mesh-new.c b/src/mesh/gnunet-service-mesh-new.c
index a42651378..3b38fc05c 100644
--- a/src/mesh/gnunet-service-mesh-new.c
+++ b/src/mesh/gnunet-service-mesh-new.c
@@ -3406,7 +3406,7 @@ tunnel_add_client (struct MeshTunnel *t, struct MeshClient *c)
3406 struct MeshTunnelFlowControlInfo fcinfo; 3406 struct MeshTunnelFlowControlInfo fcinfo;
3407 3407
3408 GNUNET_array_append (t->clients, t->nclients, c); 3408 GNUNET_array_append (t->clients, t->nclients, c);
3409 memset (&fcinfo, 0, sizeof (fcinfo)); 3409 fcinfo.t = t;
3410 fcinfo.client = c; 3410 fcinfo.client = c;
3411 fcinfo.fwd_ack = t->fwd_pid + 1; 3411 fcinfo.fwd_ack = t->fwd_pid + 1;
3412 fcinfo.bck_ack = t->nobuffer ? 1 : INITIAL_WINDOW_SIZE - 1; 3412 fcinfo.bck_ack = t->nobuffer ? 1 : INITIAL_WINDOW_SIZE - 1;