From 1fd3216e6c3bf79bc2f957267922c9785f88439e Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Wed, 11 Apr 2007 22:50:01 +0000 Subject: [PATCH] fix to previous check-in --- include/libtorrent/torrent.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/libtorrent/torrent.hpp b/include/libtorrent/torrent.hpp index 3fb70ecc9..46a16538d 100755 --- a/include/libtorrent/torrent.hpp +++ b/include/libtorrent/torrent.hpp @@ -423,8 +423,7 @@ namespace libtorrent { if (is_seed()) return true; return valid_metadata() && m_torrent_file.num_pieces() - - m_num_pieces - m_picker->num_filtered() - + m_picker->num_have_filtered() == 0; + - m_num_pieces - m_picker->num_filtered() == 0; } boost::filesystem::path save_path() const;