epee: Add space after ':' in additional http response headers
This commit is contained in:
parent
31bdf7bd11
commit
7af4fbd4d1
|
@ -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 New Issue