aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2012-11-05 00:19:04 +0000
committerBart Polot <bart@net.in.tum.de>2012-11-05 00:19:04 +0000
commit2e974e56c610614545a0dffbe81a4dfe3bceeb9a (patch)
tree1a443aa8bd8ee03f04a9cc7cf0030be3b6c3c0fe
parentec22df7ccdc1ddb1a6bfe6287eadd747d6ba4f2e (diff)
downloadgnunet-2e974e56c610614545a0dffbe81a4dfe3bceeb9a.tar.gz
gnunet-2e974e56c610614545a0dffbe81a4dfe3bceeb9a.zip
- fix old mesh
-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,