aboutsummaryrefslogtreecommitdiff
path: root/src/cadet/gnunet-service-cadet_connection.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cadet/gnunet-service-cadet_connection.c')
-rw-r--r--src/cadet/gnunet-service-cadet_connection.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/cadet/gnunet-service-cadet_connection.c b/src/cadet/gnunet-service-cadet_connection.c
index 604b9ad4d..eff147a29 100644
--- a/src/cadet/gnunet-service-cadet_connection.c
+++ b/src/cadet/gnunet-service-cadet_connection.c
@@ -1114,13 +1114,12 @@ connection_unlock_queue (struct CadetConnection *c, int fwd)
1114{ 1114{
1115 struct CadetPeer *peer; 1115 struct CadetPeer *peer;
1116 1116
1117 LOG (GNUNET_ERROR_TYPE_DEBUG, 1117 LOG (GNUNET_ERROR_TYPE_DEBUG, "connection_unlock_queue %s on %s\n",
1118 "connection_unlock_queue %s on %s\n", 1118 GC_f2s (fwd), GCC_2s (c));
1119 GC_f2s (fwd), GCC_2s (c));
1120 1119
1121 if (GCC_is_terminal (c, fwd)) 1120 if (GCC_is_terminal (c, fwd))
1122 { 1121 {
1123 LOG (GNUNET_ERROR_TYPE_DEBUG, " is terminal!\n"); 1122 LOG (GNUNET_ERROR_TYPE_DEBUG, " is terminal, can unlock!\n");
1124 return; 1123 return;
1125 } 1124 }
1126 1125