mirror of
https://github.com/KingDuckZ/kamokan.git
synced 2024-11-27 00:43:47 +00:00
Rename function.
This commit is contained in:
parent
cd72d374c5
commit
e9d54c3ff5
3 changed files with 3 additions and 3 deletions
|
@ -65,7 +65,7 @@ namespace tawashi {
|
|||
} //unnamed namespace
|
||||
|
||||
CGIEnv::CGIEnv() :
|
||||
m_cgi_env(get_cgi_vars())
|
||||
m_cgi_env(get_cgi_environment_vars())
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#include "get_env.hpp"
|
||||
|
||||
namespace tawashi {
|
||||
std::vector<std::string> get_cgi_vars() {
|
||||
std::vector<std::string> get_cgi_environment_vars() {
|
||||
using boost::string_ref;
|
||||
|
||||
std::vector<std::string> retlist;
|
||||
|
|
|
@ -25,5 +25,5 @@ namespace tawashi {
|
|||
SERVER_SOFTWARE
|
||||
);
|
||||
|
||||
std::vector<std::string> get_cgi_vars();
|
||||
std::vector<std::string> get_cgi_environment_vars();
|
||||
} //namespace tawashi
|
||||
|
|
Loading…
Reference in a new issue