diff --git a/ChangeLog b/ChangeLog index 5d08b8bd..082eb5a4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-04-21 Tatsuhiro Tsujikawa + + Fixed the bug that _e is passed where e should be passed. + * src/HttpListenCommand.cc + 2010-04-20 Tatsuhiro Tsujikawa Increased _epEvents size if necessary. diff --git a/src/HttpListenCommand.cc b/src/HttpListenCommand.cc index d679ac68..a0d1db26 100644 --- a/src/HttpListenCommand.cc +++ b/src/HttpListenCommand.cc @@ -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);