*** empty log message ***

This commit is contained in:
Arvid Norberg 2004-04-14 22:31:14 +00:00
parent 62d633e03f
commit 15bf2519f1
3 changed files with 5 additions and 5 deletions

View File

@ -34,7 +34,7 @@ REQUIREMENTS =
<toolset>darwin:<cxxflags>-Wno-unused-variable
;
USAGE_REQIREMENTS =
USAGE_REQUIREMENTS =
<include>./include
<include>$(BOOST_ROOT)
<variant>release:<define>NDEBUG

View File

@ -142,7 +142,7 @@ namespace libtorrent
void tick();
void queue_request(
tracker_request const& r
tracker_request r
, request_callback* c = 0
, std::string const& password = "");
void abort_request(request_callback* c);

View File

@ -303,7 +303,7 @@ namespace libtorrent
}
void tracker_manager::queue_request(
tracker_request const& req
tracker_request req
, request_callback* c
, std::string const& password)
{
@ -318,8 +318,8 @@ namespace libtorrent
int port = 80;
// PARSE URL
std::string::const_iterator start = req.url.begin();
std::string::const_iterator end
std::string::iterator start = req.url.begin();
std::string::iterator end
= std::find(req.url.begin(), req.url.end(), ':');
protocol = std::string(start, end);