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

This commit is contained in:
Tom Smeding 2019-02-18 14:56:28 +01:00
parent 31bdf7bd11
commit 7af4fbd4d1
1 changed files with 1 additions and 1 deletions

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