gnunet

Main GNUnet Logic
Log | Files | Refs | Submodules | README | LICENSE

commit 5198e24a48d88110d5b19112a1dda7cf45badc3c
parent 9f64f743ec799d235bb566fc685ba1459962ff17
Author: Bart Polot <bart@net.in.tum.de>
Date:   Mon, 15 Jul 2013 22:37:33 +0000

- off by one

Diffstat:
Msrc/mesh/gnunet-service-mesh.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mesh/gnunet-service-mesh.c b/src/mesh/gnunet-service-mesh.c @@ -2224,7 +2224,7 @@ tunnel_send_ack (struct MeshTunnel *t, uint16_t type, int fwd) delta_mid = 0; if (0 > delta || (GNUNET_YES == t->reliable && NULL != o && - (rel->n_sent > 10 || delta_mid > 64))) + (10 < rel->n_sent || 64 <= delta_mid))) delta = 0; if (NULL != o && delta > 1) delta = 1;