1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-03 18:25:35 +00:00

finish #2281 - apply DHT 0.8 typo fix

This commit is contained in:
Mitchell Livingston 2009-08-08 00:05:25 +00:00
parent def0b31330
commit e9e956acba
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
dht-0.9 (unreleased):
* Fixed a typo in dht_nodes.
28 July 2009: dht-0.8
* Fixed a crash when expiring the first search on the list.

View file

@ -1253,7 +1253,7 @@ dht_nodes(int *good_return, int *dubious_return, int *cached_return,
if(cached_return)
*cached_return = cached;
if(incoming_return)
*incoming_return = cached;
*incoming_return = incoming;
return good + dubious;
}