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
pull/1/head
Tatsuhiro Tsujikawa 2010-04-21 13:59:15 +00:00
parent ced238d098
commit c1047561b6
2 changed files with 6 additions and 1 deletions

View File

@ -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>
Increased _epEvents size if necessary.

View File

@ -81,7 +81,7 @@ bool HttpListenCommand::execute()
}
} catch(RecoverableException& e) {
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);