From efaf47aaf743d5c209aac3bde13589de0c4b853a Mon Sep 17 00:00:00 2001 From: Bart Polot Date: Sat, 18 Aug 2012 10:38:33 +0000 Subject: [PATCH] - fix --- src/mesh/mesh_api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesh/mesh_api.c b/src/mesh/mesh_api.c index 412180aa5..fe2dff4e5 100644 --- a/src/mesh/mesh_api.c +++ b/src/mesh/mesh_api.c @@ -702,7 +702,7 @@ send_ack (struct GNUNET_MESH_Handle *h, struct GNUNET_MESH_Tunnel *t) 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; -- 2.25.1