aboutsummaryrefslogtreecommitdiff
path: root/src/cadet/gnunet-service-cadet_connection.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-01-15 21:49:06 +0100
committerChristian Grothoff <christian@grothoff.org>2017-01-15 21:49:06 +0100
commit71785fccb8584bd028ff48aa56f55e84324c569e (patch)
treedf07376ac00f04484045be67f5743ff42449a2d2 /src/cadet/gnunet-service-cadet_connection.c
parent4270685ca41e6401f0836716a24e87dbab4d1145 (diff)
downloadgnunet-71785fccb8584bd028ff48aa56f55e84324c569e.tar.gz
gnunet-71785fccb8584bd028ff48aa56f55e84324c569e.zip
cleaning up some CADET logic, improving types used
Diffstat (limited to 'src/cadet/gnunet-service-cadet_connection.c')
-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 343e372b2..e727ef199 100644
--- a/src/cadet/gnunet-service-cadet_connection.c
+++ b/src/cadet/gnunet-service-cadet_connection.c
@@ -2464,7 +2464,7 @@ check_message (const struct GNUNET_MessageHeader *message,
2464 if (GNUNET_MESSAGE_TYPE_CADET_ENCRYPTED == type) 2464 if (GNUNET_MESSAGE_TYPE_CADET_ENCRYPTED == type)
2465 { 2465 {
2466 fc = fwd ? &c->bck_fc : &c->fwd_fc; 2466 fc = fwd ? &c->bck_fc : &c->fwd_fc;
2467 LOG (GNUNET_ERROR_TYPE_DEBUG, " PID %u (expected %u - %u)\n", 2467 LOG (GNUNET_ERROR_TYPE_DEBUG, " PID %u (expected in interval [%u,%u])\n",
2468 pid, 2468 pid,
2469 fc->last_pid_recv + 1, 2469 fc->last_pid_recv + 1,
2470 fc->last_ack_sent); 2470 fc->last_ack_sent);