Merge pull request #5160

7af4fbd4 epee: Add space after ':' in additional http response headers (Tom Smeding)
This commit is contained in:
Riccardo Spagni 2019-03-04 21:33:24 +02:00
commit f18a7e39b8
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -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";