epee: Add space after ':' in additional http response headers

pull/200/head
Tom Smeding 5 years ago
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…
Cancel
Save