aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2014-07-03 15:22:05 +0000
committerBart Polot <bart@net.in.tum.de>2014-07-03 15:22:05 +0000
commit78c1380984a6ab49ffcc10ecc839c745cff4c0be (patch)
tree7f4c51ef6b33e3f0647fe2f3504135c7cdd4dac4
parent90f11300f331db2d5af70bcd0ca7daf6f481827a (diff)
downloadgnunet-78c1380984a6ab49ffcc10ecc839c745cff4c0be.tar.gz
gnunet-78c1380984a6ab49ffcc10ecc839c745cff4c0be.zip
- fix connection pending counter
-rw-r--r--src/cadet/gnunet-service-cadet_connection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cadet/gnunet-service-cadet_connection.c b/src/cadet/gnunet-service-cadet_connection.c
index 3dd19950b..af8f69bb5 100644
--- a/src/cadet/gnunet-service-cadet_connection.c
+++ b/src/cadet/gnunet-service-cadet_connection.c
@@ -2981,7 +2981,7 @@ GCC_send_prebuilt_message (const struct GNUNET_MessageHeader *message,
2981 } 2981 }
2982 2982
2983 LOG (GNUNET_ERROR_TYPE_DEBUG, " C_P+ %p %u\n", c, c->pending_messages); 2983 LOG (GNUNET_ERROR_TYPE_DEBUG, " C_P+ %p %u\n", c, c->pending_messages);
2984// c->pending_messages++; 2984 c->pending_messages++;
2985 2985
2986 q = GNUNET_new (struct CadetConnectionQueue); 2986 q = GNUNET_new (struct CadetConnectionQueue);
2987 q->forced = !droppable; 2987 q->forced = !droppable;