mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2025-05-15 01:08:27 +00:00
Fixed build errors and adjusted a test case.
This commit is contained in:
parent
f3eb1c4e00
commit
7cdf62dd31
4 changed files with 21 additions and 4 deletions
|
@ -34,7 +34,7 @@ std::string log(const Request& req, const Response& res)
|
|||
|
||||
s += "================================\n";
|
||||
|
||||
snprintf(buf, sizeof(buf), "%s %s", req.method.c_str(), req.url.c_str());
|
||||
snprintf(buf, sizeof(buf), "%s %s", req.method.c_str(), req.path.c_str());
|
||||
s += buf;
|
||||
|
||||
std::string query;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue