mirror of
https://github.com/KingDuckZ/kamokan.git
synced 2024-12-01 00:45:41 +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
|
} //unnamed namespace
|
||||||
|
|
||||||
CGIEnv::CGIEnv() :
|
CGIEnv::CGIEnv() :
|
||||||
m_cgi_env(get_cgi_vars())
|
m_cgi_env(get_cgi_environment_vars())
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
#include "get_env.hpp"
|
#include "get_env.hpp"
|
||||||
|
|
||||||
namespace tawashi {
|
namespace tawashi {
|
||||||
std::vector<std::string> get_cgi_vars() {
|
std::vector<std::string> get_cgi_environment_vars() {
|
||||||
using boost::string_ref;
|
using boost::string_ref;
|
||||||
|
|
||||||
std::vector<std::string> retlist;
|
std::vector<std::string> retlist;
|
||||||
|
|
|
@ -25,5 +25,5 @@ namespace tawashi {
|
||||||
SERVER_SOFTWARE
|
SERVER_SOFTWARE
|
||||||
);
|
);
|
||||||
|
|
||||||
std::vector<std::string> get_cgi_vars();
|
std::vector<std::string> get_cgi_environment_vars();
|
||||||
} //namespace tawashi
|
} //namespace tawashi
|
||||||
|
|
Loading…
Reference in a new issue