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

Use Request::METHOD_GET
	* src/RequestGroup.cc (createNextCommandWithAdj)
pull/1/head
Tatsuhiro Tsujikawa 2008-05-14 15:05:46 +00:00
parent 630cee3cb7
commit 6d0aff618d
2 changed files with 6 additions and 1 deletions

View File

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

View File

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