Browse Source

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
Tatsuhiro Tsujikawa 15 years ago
parent
commit
c1047561b6
2 changed files with 6 additions and 1 deletions
  1. 5 0
      ChangeLog
  2. 1 1
      src/HttpListenCommand.cc

+ 5 - 0
ChangeLog

@@ -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.

+ 1 - 1
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);