aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mesh/gnunet-service-mesh.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mesh/gnunet-service-mesh.c b/src/mesh/gnunet-service-mesh.c
index 9b7e6ace3..6f90b6c4d 100644
--- a/src/mesh/gnunet-service-mesh.c
+++ b/src/mesh/gnunet-service-mesh.c
@@ -3877,7 +3877,12 @@ tunnel_get_fwd_ack (struct MeshTunnel *t)
3877 if (-1LL == child_ack) 3877 if (-1LL == child_ack)
3878 { 3878 {
3879 // Node has no children, child_ack AND core buffer are irrelevant. 3879 // Node has no children, child_ack AND core buffer are irrelevant.
3880 GNUNET_break (-1LL != client_ack); // No children AND no clients? Not good! 3880 if (-1LL == client_ack) // No children AND no clients? Not good!
3881 {
3882 GNUNET_STATISTICS_update (stats, "# mesh acks with no target",
3883 1, GNUNET_NO);
3884
3885 }
3881 return (uint32_t) client_ack; 3886 return (uint32_t) client_ack;
3882 } 3887 }
3883 if (-1LL == client_ack) 3888 if (-1LL == client_ack)