From 034a0dbbfc45814cf26f7673015ced477c4a8a6d Mon Sep 17 00:00:00 2001 From: Bart Polot Date: Mon, 15 Dec 2014 07:18:14 +0000 Subject: [PATCH] - having allowance too spare is not an error --- src/cadet/gnunet-service-cadet_tunnel.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/cadet/gnunet-service-cadet_tunnel.c b/src/cadet/gnunet-service-cadet_tunnel.c index 02c20f5f4..d08620500 100644 --- a/src/cadet/gnunet-service-cadet_tunnel.c +++ b/src/cadet/gnunet-service-cadet_tunnel.c @@ -3034,9 +3034,8 @@ GCT_send_connection_acks (struct CadetTunnel *t) if (0 != to_allow) { - GNUNET_break (0); - GCT_debug (t, GNUNET_ERROR_TYPE_WARNING); - LOG (GNUNET_ERROR_TYPE_WARNING, " reminding to_allow: %u\n", to_allow); + /* Since we don't allow if it's allowed to send 64/3, this can happen. */ + LOG (GNUNET_ERROR_TYPE_DEBUG, " reminding to_allow: %u\n", to_allow); } } -- 2.25.1