From 08b4816b54879626c07bf98075e5484644588c0f Mon Sep 17 00:00:00 2001 From: Bart Polot Date: Thu, 26 Jul 2012 16:06:20 +0000 Subject: [PATCH] - mid -> pid --- src/mesh/gnunet-service-mesh.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mesh/gnunet-service-mesh.c b/src/mesh/gnunet-service-mesh.c index f87e8b043..f163bbb09 100644 --- a/src/mesh/gnunet-service-mesh.c +++ b/src/mesh/gnunet-service-mesh.c @@ -4374,13 +4374,13 @@ handle_mesh_data_unicast (void *cls, const struct GNUNET_PeerIdentity *peer, { GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO); GNUNET_log (GNUNET_ERROR_TYPE_WARNING, - " Already seen mid %u, DROPPING!\n", pid); + " Already seen pid %u, DROPPING!\n", pid); return GNUNET_OK; } else { GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, - " mid %u not seen yet, forwarding\n", pid); + " pid %u not seen yet, forwarding\n", pid); } t->skip += (pid - t->pid) - 1; t->pid = pid; @@ -4481,13 +4481,13 @@ handle_mesh_data_multicast (void *cls, const struct GNUNET_PeerIdentity *peer, /* already seen this packet, drop */ GNUNET_STATISTICS_update (stats, "# TTL drops", 1, GNUNET_NO); GNUNET_log (GNUNET_ERROR_TYPE_WARNING, - " Already seen mid %u, DROPPING!\n", pid); + " Already seen pid %u, DROPPING!\n", pid); return GNUNET_OK; } else { GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, - " mid %u not seen yet, forwarding\n", pid); + " pid %u not seen yet, forwarding\n", pid); } t->skip += (pid - t->pid) - 1; t->pid = pid; -- 2.25.1