1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 01:03:01 +00:00

don't let vraa have that many peers any more.

This commit is contained in:
Charles Kerr 2008-03-13 05:42:39 +00:00
parent 29f092197f
commit 9bb4c477f3

View file

@ -262,7 +262,7 @@ publishNewPeers( tr_tracker * t, int count, uint8_t * peers )
event.messageType = TR_TRACKER_PEERS;
event.peerCount = count;
event.peerCompact = peers;
tr_ndbg( t->name, "Torrent got %d new peers", t->name, count );
tr_ndbg( t->name, "Torrent got %d new peers", count );
if( count )
tr_publisherPublish( t->publisher, t, &event );
}