fixed url-seed bug causing only a single web seed to be connected

This commit is contained in:
Arvid Norberg 2009-09-07 06:09:57 +00:00
parent 578fbccceb
commit 5164c42a00
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ namespace libtorrent
{ return url == e.url && type == e.type; }
bool operator<(web_seed_entry const& e) const
{ return url < e.url && type < e.type; }
{ return url < e.url ? true : type < e.type; }
};
namespace fs = boost::filesystem;