gnunet-svn
[Top][All Lists]
Advanced

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

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


From: gnunet
Subject: [GNUnet-SVN] r23298 - gnunet/src/mesh
Date: Sat, 18 Aug 2012 12:38:33 +0200

Author: bartpolot
Date: 2012-08-18 12:38:33 +0200 (Sat, 18 Aug 2012)
New Revision: 23298

Modified:
   gnunet/src/mesh/mesh_api.c
Log:
- fix

Modified: gnunet/src/mesh/mesh_api.c
===================================================================
--- gnunet/src/mesh/mesh_api.c  2012-08-18 10:26:01 UTC (rev 23297)
+++ gnunet/src/mesh/mesh_api.c  2012-08-18 10:38:33 UTC (rev 23298)
@@ -702,7 +702,7 @@
   msg.header.type = htons (GNUNET_MESSAGE_TYPE_MESH_LOCAL_ACK);
   msg.header.size = htons (sizeof (msg));
   msg.tunnel_id = htonl (t->tid);
-  msg.max_pid = t->last_recv_pid + 1;
+  msg.max_pid = htonl (t->last_recv_pid + 1);
 
   send_packet (h, &msg.header, t);
   return;




reply via email to

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