mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 08:17:37 +00:00
epee: Add space after ':' in additional http response headers
This commit is contained in:
parent
31bdf7bd11
commit
7af4fbd4d1
1 changed files with 1 additions and 1 deletions
|
@ -677,7 +677,7 @@ namespace net_utils
|
|||
|
||||
//add additional fields, if it is
|
||||
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";
|
||||
|
||||
|
|
Loading…
Reference in a new issue