aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_tcp.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-03-19 09:43:45 +0000
committerChristian Grothoff <christian@grothoff.org>2010-03-19 09:43:45 +0000
commit9618f4481593c6300c04e8253f2e03a2380a899d (patch)
tree589e157d539ca614517ddf27044724e4a2840c82 /src/transport/plugin_transport_tcp.c
parentfed172b6ccffc79e8415bb4e8a35984209a32ea2 (diff)
downloadgnunet-9618f4481593c6300c04e8253f2e03a2380a899d.tar.gz
gnunet-9618f4481593c6300c04e8253f2e03a2380a899d.zip
fix
Diffstat (limited to 'src/transport/plugin_transport_tcp.c')
-rw-r--r--src/transport/plugin_transport_tcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transport/plugin_transport_tcp.c b/src/transport/plugin_transport_tcp.c
index 48ad370fa..6786b9c34 100644
--- a/src/transport/plugin_transport_tcp.c
+++ b/src/transport/plugin_transport_tcp.c
@@ -617,8 +617,8 @@ tcp_plugin_send (void *cls,
617 where we could restrict the iteration to entries that match 617 where we could restrict the iteration to entries that match
618 the target peer... */ 618 the target peer... */
619 while ( (session != NULL) && 619 while ( (session != NULL) &&
620 (session->client != NULL) && 620 ( (session->client == NULL) ||
621 ( (0 != memcmp (target, 621 (0 != memcmp (target,
622 &session->target, 622 &session->target,
623 sizeof (struct GNUNET_PeerIdentity))) || 623 sizeof (struct GNUNET_PeerIdentity))) ||
624 ( (GNUNET_YES == force_address) && 624 ( (GNUNET_YES == force_address) &&