aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_tcp.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2014-03-21 12:59:15 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2014-03-21 12:59:15 +0000
commit7d86df9e68a1e1d5dec0e455e4f9abba943f5f1e (patch)
treef4704019ed62cf1f3db2369a3b858376f5fed53d /src/transport/plugin_transport_tcp.c
parent6c5b8059574607a19bc929f74926a35be328cefc (diff)
downloadgnunet-7d86df9e68a1e1d5dec0e455e4f9abba943f5f1e.tar.gz
gnunet-7d86df9e68a1e1d5dec0e455e4f9abba943f5f1e.zip
fix compile warning
Diffstat (limited to 'src/transport/plugin_transport_tcp.c')
-rw-r--r--src/transport/plugin_transport_tcp.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/transport/plugin_transport_tcp.c b/src/transport/plugin_transport_tcp.c
index 976a6bc6b..1489fee77 100644
--- a/src/transport/plugin_transport_tcp.c
+++ b/src/transport/plugin_transport_tcp.c
@@ -2102,6 +2102,11 @@ handle_tcp_welcome (void *cls, struct GNUNET_SERVER_Client *client,
2102 PLUGIN_NAME, &t6, sizeof (t6), 2102 PLUGIN_NAME, &t6, sizeof (t6),
2103 GNUNET_HELLO_ADDRESS_INFO_INBOUND); 2103 GNUNET_HELLO_ADDRESS_INFO_INBOUND);
2104 } 2104 }
2105 else
2106 {
2107 GNUNET_break (0);
2108 return;
2109 }
2105 session = create_session (plugin, address, client, GNUNET_NO); 2110 session = create_session (plugin, address, client, GNUNET_NO);
2106 GNUNET_HELLO_address_free (address); 2111 GNUNET_HELLO_address_free (address);
2107 ats = plugin->env->get_address_type (plugin->env->cls, vaddr, alen); 2112 ats = plugin->env->get_address_type (plugin->env->cls, vaddr, alen);