mirror of https://github.com/aria2/aria2
2010-04-21 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Fixed the bug that _e is passed where e should be passed. * src/HttpListenCommand.ccpull/1/head
parent
ced238d098
commit
c1047561b6
|
@ -1,3 +1,8 @@
|
||||||
|
2010-04-21 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||||
|
|
||||||
|
Fixed the bug that _e is passed where e should be passed.
|
||||||
|
* src/HttpListenCommand.cc
|
||||||
|
|
||||||
2010-04-20 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
2010-04-20 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||||
|
|
||||||
Increased _epEvents size if necessary.
|
Increased _epEvents size if necessary.
|
||||||
|
|
|
@ -81,7 +81,7 @@ bool HttpListenCommand::execute()
|
||||||
}
|
}
|
||||||
} catch(RecoverableException& e) {
|
} catch(RecoverableException& e) {
|
||||||
if(logger->debug()) {
|
if(logger->debug()) {
|
||||||
logger->debug(MSG_ACCEPT_FAILURE, _e, util::itos(cuid).c_str());
|
logger->debug(MSG_ACCEPT_FAILURE, e, util::itos(cuid).c_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_e->commands.push_back(this);
|
_e->commands.push_back(this);
|
||||||
|
|
Loading…
Reference in New Issue