forked from premiere/premiere-libtorrent
fixed typo in previous checkin and updated AUTHORS
This commit is contained in:
parent
98b92e3f02
commit
a3bf238143
17
AUTHORS
17
AUTHORS
|
@ -1,12 +1,19 @@
|
|||
|
||||
Written by Arvid Norberg. Copyright (c) 2003-2006
|
||||
Written by Arvid Norberg. Copyright (c) 2003-2007
|
||||
|
||||
Contributions by Magnus Jonsson, Daniel Wallin and Cory Nelson
|
||||
Lots of testing, suggestions and contributions by:
|
||||
Massaroddel
|
||||
Tianhao Qiu.
|
||||
|
||||
Lots of testing, suggestions and contributions by Massaroddel and Tianhao Qiu.
|
||||
Contributions by:
|
||||
Magnus Jonsson
|
||||
Daniel Wallin
|
||||
Cory Nelson
|
||||
Stas Khirman
|
||||
|
||||
Big thanks to Michael Wojciechowski and Peter Koeleman for making the
|
||||
autotools scripts.
|
||||
Building and maintainance of the autotools scripts:
|
||||
Michael Wojciechowski
|
||||
Peter Koeleman
|
||||
|
||||
Thanks to Reimond Retz for bugfixes, suggestions and testing
|
||||
|
||||
|
|
|
@ -1182,7 +1182,8 @@ namespace libtorrent
|
|||
if (it == m_request_queue.end()) return;
|
||||
m_request_queue.erase(it);
|
||||
|
||||
m_policy->block_finished(*this, block);
|
||||
policy& pol = t->get_policy();
|
||||
pol.block_finished(*this, block);
|
||||
send_block_requests();
|
||||
// since we found it in the request queue, it means it hasn't been
|
||||
// sent yet, so we don't have to send a cancel.
|
||||
|
@ -1207,7 +1208,8 @@ namespace libtorrent
|
|||
|
||||
write_cancel(r);
|
||||
|
||||
m_policy->block_finished(*this, block);
|
||||
policy& pol = t->get_policy();
|
||||
pol.block_finished(*this, block);
|
||||
send_block_requests();
|
||||
|
||||
#ifdef TORRENT_VERBOSE_LOGGING
|
||||
|
|
Loading…
Reference in New Issue