mirror of
https://github.com/transmission/transmission
synced 2025-01-30 19:03:04 +00:00
Per analysis by cfpp2p (https://github.com/transmission/transmission/issues/564#issuecomment-377612224), a duplicate search is not an error.
This commit is contained in:
parent
090a4b5ff8
commit
d2c8137518
1 changed files with 1 additions and 1 deletions
|
@ -729,7 +729,7 @@ static int tr_dhtAnnounce(tr_torrent* tor, int af, bool announce)
|
||||||
{
|
{
|
||||||
rc = dht_search(tor->info.hash, announce ? tr_sessionGetPeerPort(session_) : 0, af, callback, NULL);
|
rc = dht_search(tor->info.hash, announce ? tr_sessionGetPeerPort(session_) : 0, af, callback, NULL);
|
||||||
|
|
||||||
if (rc >= 1)
|
if (rc >= 0)
|
||||||
{
|
{
|
||||||
tr_logAddTorInfo(tor, "Starting %s DHT announce (%s, %d nodes)", af == AF_INET6 ? "IPv6" : "IPv4",
|
tr_logAddTorInfo(tor, "Starting %s DHT announce (%s, %d nodes)", af == AF_INET6 ? "IPv6" : "IPv4",
|
||||||
tr_dhtPrintableStatus(status), numnodes);
|
tr_dhtPrintableStatus(status), numnodes);
|
||||||
|
|
Loading…
Reference in a new issue