aboutsummaryrefslogtreecommitdiff
path: root/src/cadet
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-02-15 17:24:43 +0100
committerChristian Grothoff <christian@grothoff.org>2017-02-15 17:24:43 +0100
commit6bc0d9727ba8d3f57958dab50d571e1d9e6a630f (patch)
tree0a30c70747634d749b43ea82328e200afe74a046 /src/cadet
parente6fbcee2510d7263b53d7a5c7cf1fc1d4a7bbdd6 (diff)
downloadgnunet-6bc0d9727ba8d3f57958dab50d571e1d9e6a630f.tar.gz
gnunet-6bc0d9727ba8d3f57958dab50d571e1d9e6a630f.zip
fix typos in log msgs
Diffstat (limited to 'src/cadet')
-rw-r--r--src/cadet/gnunet-service-cadet-new_tunnels.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cadet/gnunet-service-cadet-new_tunnels.c b/src/cadet/gnunet-service-cadet-new_tunnels.c
index 9d2ea451b..c14b07ba8 100644
--- a/src/cadet/gnunet-service-cadet-new_tunnels.c
+++ b/src/cadet/gnunet-service-cadet-new_tunnels.c
@@ -2640,7 +2640,7 @@ handle_plaintext_data (void *cls,
2640 /* We don't know about such a channel, might have been destroyed on our 2640 /* We don't know about such a channel, might have been destroyed on our
2641 end in the meantime, or never existed. Send back a DESTROY. */ 2641 end in the meantime, or never existed. Send back a DESTROY. */
2642 LOG (GNUNET_ERROR_TYPE_DEBUG, 2642 LOG (GNUNET_ERROR_TYPE_DEBUG,
2643 "Receicved %u bytes of application data for unknown channel %u, sending DESTROY\n", 2643 "Received %u bytes of application data for unknown channel %u, sending DESTROY\n",
2644 (unsigned int) (ntohs (msg->header.size) - sizeof (*msg)), 2644 (unsigned int) (ntohs (msg->header.size) - sizeof (*msg)),
2645 ntohl (msg->ctn.cn)); 2645 ntohl (msg->ctn.cn));
2646 GCT_send_channel_destroy (t, 2646 GCT_send_channel_destroy (t,
@@ -2675,7 +2675,7 @@ handle_plaintext_data_ack (void *cls,
2675 /* We don't know about such a channel, might have been destroyed on our 2675 /* We don't know about such a channel, might have been destroyed on our
2676 end in the meantime, or never existed. Send back a DESTROY. */ 2676 end in the meantime, or never existed. Send back a DESTROY. */
2677 LOG (GNUNET_ERROR_TYPE_DEBUG, 2677 LOG (GNUNET_ERROR_TYPE_DEBUG,
2678 "Receicved DATA_ACK for unknown channel %u, sending DESTROY\n", 2678 "Received DATA_ACK for unknown channel %u, sending DESTROY\n",
2679 ntohl (ack->ctn.cn)); 2679 ntohl (ack->ctn.cn));
2680 GCT_send_channel_destroy (t, 2680 GCT_send_channel_destroy (t,
2681 ack->ctn); 2681 ack->ctn);
@@ -2706,7 +2706,7 @@ handle_plaintext_channel_open (void *cls,
2706 if (NULL != ch) 2706 if (NULL != ch)
2707 { 2707 {
2708 LOG (GNUNET_ERROR_TYPE_DEBUG, 2708 LOG (GNUNET_ERROR_TYPE_DEBUG,
2709 "Receicved duplicate channel OPEN on port %s from %s (%s), resending ACK\n", 2709 "Received duplicate channel OPEN on port %s from %s (%s), resending ACK\n",
2710 GNUNET_h2s (&copen->port), 2710 GNUNET_h2s (&copen->port),
2711 GCT_2s (t), 2711 GCT_2s (t),
2712 GCCH_2s (ch)); 2712 GCCH_2s (ch));
@@ -2715,7 +2715,7 @@ handle_plaintext_channel_open (void *cls,
2715 return; 2715 return;
2716 } 2716 }
2717 LOG (GNUNET_ERROR_TYPE_DEBUG, 2717 LOG (GNUNET_ERROR_TYPE_DEBUG,
2718 "Receicved channel OPEN on port %s from %s\n", 2718 "Received channel OPEN on port %s from %s\n",
2719 GNUNET_h2s (&copen->port), 2719 GNUNET_h2s (&copen->port),
2720 GCT_2s (t)); 2720 GCT_2s (t));
2721 ch = GCCH_channel_incoming_new (t, 2721 ch = GCCH_channel_incoming_new (t,
@@ -2824,7 +2824,7 @@ handle_plaintext_channel_destroy (void *cls,
2824 return; 2824 return;
2825 } 2825 }
2826 LOG (GNUNET_ERROR_TYPE_DEBUG, 2826 LOG (GNUNET_ERROR_TYPE_DEBUG,
2827 "Receicved channel DESTROY on %s from %s\n", 2827 "Received channel DESTROY on %s from %s\n",
2828 GCCH_2s (ch), 2828 GCCH_2s (ch),
2829 GCT_2s (t)); 2829 GCT_2s (t));
2830 GCCH_handle_remote_destroy (ch, 2830 GCCH_handle_remote_destroy (ch,