aboutsummaryrefslogtreecommitdiff
path: root/src/cadet/gnunet-service-cadet-new_channel.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-02-15 17:37:17 +0100
committerChristian Grothoff <christian@grothoff.org>2017-02-15 17:37:17 +0100
commit60790f6e89914decc21c850d07aef9be237a6c41 (patch)
tree466e06ba2c6ba468cc5dfec446349824201073a9 /src/cadet/gnunet-service-cadet-new_channel.c
parent6bc0d9727ba8d3f57958dab50d571e1d9e6a630f (diff)
downloadgnunet-60790f6e89914decc21c850d07aef9be237a6c41.tar.gz
gnunet-60790f6e89914decc21c850d07aef9be237a6c41.zip
spell out message types more, use correct conversion direction
Diffstat (limited to 'src/cadet/gnunet-service-cadet-new_channel.c')
-rw-r--r--src/cadet/gnunet-service-cadet-new_channel.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cadet/gnunet-service-cadet-new_channel.c b/src/cadet/gnunet-service-cadet-new_channel.c
index da9eb3c75..6df6c24cd 100644
--- a/src/cadet/gnunet-service-cadet-new_channel.c
+++ b/src/cadet/gnunet-service-cadet-new_channel.c
@@ -859,19 +859,19 @@ GCCH_handle_duplicate_open (struct CadetChannel *ch,
859 if (NULL == ch->dest) 859 if (NULL == ch->dest)
860 { 860 {
861 LOG (GNUNET_ERROR_TYPE_DEBUG, 861 LOG (GNUNET_ERROR_TYPE_DEBUG,
862 "Ignoring duplicate channel OPEN on %s: port is closed\n", 862 "Ignoring duplicate CHANNEL_OPEN on %s: port is closed\n",
863 GCCH_2s (ch)); 863 GCCH_2s (ch));
864 return; 864 return;
865 } 865 }
866 if (NULL != ch->retry_control_task) 866 if (NULL != ch->retry_control_task)
867 { 867 {
868 LOG (GNUNET_ERROR_TYPE_DEBUG, 868 LOG (GNUNET_ERROR_TYPE_DEBUG,
869 "Ignoring duplicate channel OPEN on %s: control message is pending\n", 869 "Ignoring duplicate CHANNEL_OPEN on %s: control message is pending\n",
870 GCCH_2s (ch)); 870 GCCH_2s (ch));
871 return; 871 return;
872 } 872 }
873 LOG (GNUNET_ERROR_TYPE_DEBUG, 873 LOG (GNUNET_ERROR_TYPE_DEBUG,
874 "Retransmitting OPEN_ACK on %s\n", 874 "Retransmitting CHANNEL_OPEN_ACK on %s\n",
875 GCCH_2s (ch)); 875 GCCH_2s (ch));
876 ch->retry_control_task 876 ch->retry_control_task
877 = GNUNET_SCHEDULER_add_now (&send_open_ack, 877 = GNUNET_SCHEDULER_add_now (&send_open_ack,