aboutsummaryrefslogtreecommitdiff
path: root/src/cadet
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-02-17 14:31:38 +0100
committerChristian Grothoff <christian@grothoff.org>2017-02-17 14:31:38 +0100
commit181c039d12aa2aa99920d14070e7b64c018e8be7 (patch)
tree58725a1ff58892cbdf53983dc28b4c50c423e1ac /src/cadet
parent69d9269f2c5887e73950ee3a7fc0fd5e050a8a86 (diff)
downloadgnunet-181c039d12aa2aa99920d14070e7b64c018e8be7.tar.gz
gnunet-181c039d12aa2aa99920d14070e7b64c018e8be7.zip
get FS test with CADET to finally pass again
Diffstat (limited to 'src/cadet')
-rw-r--r--src/cadet/cadet_api_new.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/cadet/cadet_api_new.c b/src/cadet/cadet_api_new.c
index 8f482aa28..eb8bc2549 100644
--- a/src/cadet/cadet_api_new.c
+++ b/src/cadet/cadet_api_new.c
@@ -711,11 +711,10 @@ handle_local_data (void *cls,
711 type = ntohs (payload->type); 711 type = ntohs (payload->type);
712 fwd = ntohl (ch->ccn.channel_of_client) <= GNUNET_CADET_LOCAL_CHANNEL_ID_CLI; 712 fwd = ntohl (ch->ccn.channel_of_client) <= GNUNET_CADET_LOCAL_CHANNEL_ID_CLI;
713 LOG (GNUNET_ERROR_TYPE_DEBUG, 713 LOG (GNUNET_ERROR_TYPE_DEBUG,
714 "Got a %s data on channel %s [%X] of type %s (%u)\n", 714 "Got a %s data on channel %s [%X] of type %u\n",
715 GC_f2s (fwd), 715 fwd ? "FWD" : "BWD",
716 GNUNET_i2s (&ch->peer), 716 GNUNET_i2s (&ch->peer),
717 ntohl (message->ccn.channel_of_client), 717 ntohl (message->ccn.channel_of_client),
718 GC_m2s (type),
719 type); 718 type);
720 GNUNET_MQ_inject_message (ch->mq, 719 GNUNET_MQ_inject_message (ch->mq,
721 payload); 720 payload);