Commit e677e378 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

Merge pull request #461 from ayanamist/ayanamist-patch-1

header value should not be inp_strlower
parents 894c1bd0 5ec6066f
......@@ -291,7 +291,6 @@ std::pair<std::string, std::string> parse_header(const char *optarg) {
auto p = std::make_pair(std::string(optarg, colon),
std::string(value, strlen(value)));
util::inp_strlower(p.first);
util::inp_strlower(p.second);
return p;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment