aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mesh/gnunet-service-mesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesh/gnunet-service-mesh.c b/src/mesh/gnunet-service-mesh.c
index dba4116cf..202c54883 100644
--- a/src/mesh/gnunet-service-mesh.c
+++ b/src/mesh/gnunet-service-mesh.c
@@ -7726,7 +7726,7 @@ handle_local_to_origin (void *cls, struct GNUNET_SERVER_Client *client,
7726 GNUNET_PEER_resolve (t->id.oid, &copy->oid); 7726 GNUNET_PEER_resolve (t->id.oid, &copy->oid);
7727 copy->tid = htonl (t->id.tid); 7727 copy->tid = htonl (t->id.tid);
7728 copy->ttl = htonl (default_ttl); 7728 copy->ttl = htonl (default_ttl);
7729 copy->pid = htonl (++(t->bck_pid)); 7729 copy->pid = htonl (t->bck_pid + 1);
7730 7730
7731 copy->sender = my_full_id; 7731 copy->sender = my_full_id;
7732 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 7732 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,