summaryrefslogtreecommitdiff
path: root/trackerlogic.c
diff options
context:
space:
mode:
authorerdgeist <>2009-02-03 16:45:44 +0000
committererdgeist <>2009-02-03 16:45:44 +0000
commit01408992b78b6541263e3fcbfa350932a376e7c0 (patch)
tree963c74275e5713ad005e5cc44942f5d30cb2c5d5 /trackerlogic.c
parentc3003dfd6f2e59d030f2a9be3ac314db15c5d307 (diff)
Reverse logic... do only sync those NOT coming from multi cast
Diffstat (limited to 'trackerlogic.c')
-rw-r--r--trackerlogic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/trackerlogic.c b/trackerlogic.c
index 3ca266a..45ece4a 100644
--- a/trackerlogic.c
+++ b/trackerlogic.c
@@ -95,9 +95,9 @@ size_t add_peer_to_torrent_and_return_peers( ot_hash hash, ot_peer *peer, PROTO_
95 95
96#ifdef WANT_SYNC_LIVE 96#ifdef WANT_SYNC_LIVE
97 if( proto == FLAG_MCA ) 97 if( proto == FLAG_MCA )
98 livesync_tell( hash, peer );
99 else
100 OT_PEERFLAG( peer ) |= PEER_FLAG_FROM_SYNC; 98 OT_PEERFLAG( peer ) |= PEER_FLAG_FROM_SYNC;
99 else
100 livesync_tell( hash, peer );
101#endif 101#endif
102 102
103 torrent->peer_list->peer_count++; 103 torrent->peer_list->peer_count++;