fixed typo in should_check_files()

This commit is contained in:
Arvid Norberg 2010-04-15 14:31:49 +00:00
parent 43aeb2d710
commit 50c334660d
1 changed files with 1 additions and 1 deletions

View File

@ -5290,7 +5290,7 @@ namespace libtorrent
// #error should m_allow_peers really affect checking?
return (m_state == torrent_status::checking_files
|| m_state == torrent_status::queued_for_checking)
&& (!m_allow_peers || m_auto_managed)
&& (m_allow_peers || m_auto_managed)
&& !has_error()
&& !m_abort;
}