Merge pull request #5160

7af4fbd4 epee: Add space after ':' in additional http response headers (Tom Smeding)
release-v0.6.1.2
Riccardo Spagni 5 years ago
commit f18a7e39b8
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -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…
Cancel
Save