mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #5160
7af4fbd4
epee: Add space after ':' in additional http response headers (Tom Smeding)
This commit is contained in:
commit
f18a7e39b8
1 changed files with 1 additions and 1 deletions
|
@ -677,7 +677,7 @@ namespace net_utils
|
||||||
|
|
||||||
//add additional fields, if it is
|
//add additional fields, if it is
|
||||||
for(fields_list::const_iterator it = response.m_additional_fields.begin(); it!=response.m_additional_fields.end(); it++)
|
for(fields_list::const_iterator it = response.m_additional_fields.begin(); it!=response.m_additional_fields.end(); it++)
|
||||||
buf += it->first + ":" + it->second + "\r\n";
|
buf += it->first + ": " + it->second + "\r\n";
|
||||||
|
|
||||||
buf+="\r\n";
|
buf+="\r\n";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue