瀏覽代碼

2008-05-15 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

	Use Request::METHOD_GET
	* src/RequestGroup.cc (createNextCommandWithAdj)
Tatsuhiro Tsujikawa 17 年之前
父節點
當前提交
6d0aff618d
共有 2 個文件被更改,包括 6 次插入1 次删除
  1. 5 0
      ChangeLog
  2. 1 1
      src/RequestGroup.cc

+ 5 - 0
ChangeLog

@@ -1,3 +1,8 @@
+2008-05-15  Tatsuhiro Tsujikawa  <tujikawa at rednoah dot com>
+
+	Use Request::METHOD_GET
+	* src/RequestGroup.cc (createNextCommandWithAdj)
+
 2008-05-15  Tatsuhiro Tsujikawa  <tujikawa at rednoah dot com>
 
 	Defined "OK", "ERR", "INPR" as static const std::string

+ 1 - 1
src/RequestGroup.cc

@@ -476,7 +476,7 @@ void RequestGroup::createNextCommandWithAdj(std::deque<Command*>& commands,
       return;
     }
   }
-  createNextCommand(commands, e, numCommand, "GET");
+  createNextCommand(commands, e, numCommand, Request::METHOD_GET);
 }
 
 void RequestGroup::createNextCommand(std::deque<Command*>& commands,