gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r32093 - gnunet/src/mesh


From: gnunet
Subject: [GNUnet-SVN] r32093 - gnunet/src/mesh
Date: Thu, 30 Jan 2014 03:11:28 +0100

Author: bartpolot
Date: 2014-01-30 03:11:28 +0100 (Thu, 30 Jan 2014)
New Revision: 32093

Modified:
   gnunet/src/mesh/gnunet-service-mesh_local.c
Log:
- fix nbo

Modified: gnunet/src/mesh/gnunet-service-mesh_local.c
===================================================================
--- gnunet/src/mesh/gnunet-service-mesh_local.c 2014-01-30 02:11:27 UTC (rev 
32092)
+++ gnunet/src/mesh/gnunet-service-mesh_local.c 2014-01-30 02:11:28 UTC (rev 
32093)
@@ -602,10 +602,10 @@
   msg.header.size = htons (sizeof (msg));
   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_INFO_PEERS);
   msg.destination = *peer;
-  msg.paths = GMP_count_paths (p);
-  msg.tunnel = NULL != GMP_get_tunnel (p);
+  msg.paths = htons (GMP_count_paths (p));
+  msg.tunnel = htons (NULL != GMP_get_tunnel (p));
 
-  LOG (GNUNET_ERROR_TYPE_DEBUG, "sending info about tunnel ->%s\n",
+  LOG (GNUNET_ERROR_TYPE_DEBUG, "sending info about peer %s\n",
        GNUNET_i2s (peer));
 
   GNUNET_SERVER_notification_context_unicast (nc, client,




reply via email to

[Prev in Thread] Current Thread [Next in Thread]