aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-12-12 13:48:16 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-12-12 13:48:16 +0000
commita4571164ebf622ee6fb67a24355b50d5a6e51739 (patch)
treefdb8a1a3ba61dc78d074c217e5fc55def8c24f4d
parentae95d2cfa0d571bde89af7b6712c4f348e193232 (diff)
downloadgnunet-a4571164ebf622ee6fb67a24355b50d5a6e51739.tar.gz
gnunet-a4571164ebf622ee6fb67a24355b50d5a6e51739.zip
fix: tcp did not return network type
-rw-r--r--src/transport/plugin_transport_tcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/transport/plugin_transport_tcp.c b/src/transport/plugin_transport_tcp.c
index 3b497082c..8d026cd32 100644
--- a/src/transport/plugin_transport_tcp.c
+++ b/src/transport/plugin_transport_tcp.c
@@ -2050,7 +2050,7 @@ handle_tcp_data (void *cls, struct GNUNET_SERVER_Client *client,
2050 &session->target, 2050 &session->target,
2051 message, 2051 message,
2052 (const struct GNUNET_ATS_Information *) &distance, 2052 (const struct GNUNET_ATS_Information *) &distance,
2053 1, session, 2053 2, session,
2054 (GNUNET_YES == session->inbound) ? NULL : session->addr, 2054 (GNUNET_YES == session->inbound) ? NULL : session->addr,
2055 (GNUNET_YES == session->inbound) ? 0 : session->addrlen); 2055 (GNUNET_YES == session->inbound) ? 0 : session->addrlen);
2056 2056