aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mesh/gnunet-service-mesh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesh/gnunet-service-mesh.c b/src/mesh/gnunet-service-mesh.c
index 0c8d0e515..76b8f3d38 100644
--- a/src/mesh/gnunet-service-mesh.c
+++ b/src/mesh/gnunet-service-mesh.c
@@ -2172,13 +2172,13 @@ tunnel_send_ack (struct MeshTunnel *t, uint16_t type, int fwd)
2172 prev_fc = fwd ? &t->prev_fc : &t->next_fc; 2172 prev_fc = fwd ? &t->prev_fc : &t->next_fc;
2173 hop = fwd ? t->prev_hop : t->next_hop; 2173 hop = fwd ? t->prev_hop : t->next_hop;
2174 2174
2175 /* Is it after unicast retransmission? */
2176 switch (type) 2175 switch (type)
2177 { 2176 {
2178 case GNUNET_MESSAGE_TYPE_MESH_UNICAST: 2177 case GNUNET_MESSAGE_TYPE_MESH_UNICAST:
2179 case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN: 2178 case GNUNET_MESSAGE_TYPE_MESH_TO_ORIGIN:
2180 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 2179 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2181 "ACK due to DATA retransmission\n"); 2180 "ACK due to %s\n",
2181 GNUNET_MESH_DEBUG_M2S (type));
2182 if (GNUNET_YES == t->nobuffer) 2182 if (GNUNET_YES == t->nobuffer)
2183 { 2183 {
2184 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, nobuffer\n"); 2184 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Not sending ACK, nobuffer\n");