aboutsummaryrefslogtreecommitdiff
path: root/src/mesh/gnunet-service-mesh_local.c
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2014-01-30 02:11:28 +0000
committerBart Polot <bart@net.in.tum.de>2014-01-30 02:11:28 +0000
commitbbf551f88d3af99815b398b31294ee841aae1fb6 (patch)
tree2449820466120be81d36807b3661fe83590f532a /src/mesh/gnunet-service-mesh_local.c
parent32486c12e298a4b76cb8bc99858c5d74bcabf15b (diff)
downloadgnunet-bbf551f88d3af99815b398b31294ee841aae1fb6.tar.gz
gnunet-bbf551f88d3af99815b398b31294ee841aae1fb6.zip
- fix nbo
Diffstat (limited to 'src/mesh/gnunet-service-mesh_local.c')
-rw-r--r--src/mesh/gnunet-service-mesh_local.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesh/gnunet-service-mesh_local.c b/src/mesh/gnunet-service-mesh_local.c
index f5a3210af..7c614d261 100644
--- a/src/mesh/gnunet-service-mesh_local.c
+++ b/src/mesh/gnunet-service-mesh_local.c
@@ -602,10 +602,10 @@ get_all_peers_iterator (void *cls,
602 msg.header.size = htons (sizeof (msg)); 602 msg.header.size = htons (sizeof (msg));
603 msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_PEERS); 603 msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_PEERS);
604 msg.destination = *peer; 604 msg.destination = *peer;
605 msg.paths = GMP_count_paths (p); 605 msg.paths = htons (GMP_count_paths (p));
606 msg.tunnel = NULL != GMP_get_tunnel (p); 606 msg.tunnel = htons (NULL != GMP_get_tunnel (p));
607 607
608 LOG (GNUNET_ERROR_TYPE_DEBUG, "sending info about tunnel ->%s\n", 608 LOG (GNUNET_ERROR_TYPE_DEBUG, "sending info about peer %s\n",
609 GNUNET_i2s (peer)); 609 GNUNET_i2s (peer));
610 610
611 GNUNET_SERVER_notification_context_unicast (nc, client, 611 GNUNET_SERVER_notification_context_unicast (nc, client,