aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2013-05-16 17:33:08 +0000
committerBart Polot <bart@net.in.tum.de>2013-05-16 17:33:08 +0000
commit228ee9347578aa4b9c73156afe5cb1d96eb9d6e1 (patch)
tree7512fd5979f25de1441328b9838a6c5c17e1a0c5 /src
parent35d2df8c825e2ccdeb11dd64cd46d801bf0456a4 (diff)
downloadgnunet-228ee9347578aa4b9c73156afe5cb1d96eb9d6e1.tar.gz
gnunet-228ee9347578aa4b9c73156afe5cb1d96eb9d6e1.zip
- doh
Diffstat (limited to 'src')
-rw-r--r--src/mesh/gnunet-service-mesh-new.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesh/gnunet-service-mesh-new.c b/src/mesh/gnunet-service-mesh-new.c
index 815b2a3b0..4fb6b351a 100644
--- a/src/mesh/gnunet-service-mesh-new.c
+++ b/src/mesh/gnunet-service-mesh-new.c
@@ -3966,9 +3966,9 @@ handle_local_tunnel_create (void *cls, struct GNUNET_SERVER_Client *client,
3966 GNUNET_SERVER_receive_done (client, GNUNET_SYSERR); 3966 GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3967 return; 3967 return;
3968 } 3968 }
3969 t->port = ntohl (t->port); 3969 t->port = ntohl (t_msg->port);
3970 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CREATED TUNNEL %s[%x] (%x)\n", 3970 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "CREATED TUNNEL %s[%x]:%u (%x)\n",
3971 GNUNET_i2s (&my_full_id), t->id.tid, t->local_tid); 3971 GNUNET_i2s (&my_full_id), t->id.tid, t->port, t->local_tid);
3972 3972
3973 peer_info = peer_get (&t_msg->peer); 3973 peer_info = peer_get (&t_msg->peer);
3974 GNUNET_array_append (peer_info->tunnels, peer_info->ntunnels, t); 3974 GNUNET_array_append (peer_info->tunnels, peer_info->ntunnels, t);