Skip to content

Commit

Permalink
Merge pull request #5160
Browse files Browse the repository at this point in the history
7af4fbd epee: Add space after ':' in additional http response headers (Tom Smeding)
  • Loading branch information
fluffypony committed Mar 4, 2019
2 parents 2f7108f + 7af4fbd commit f18a7e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/epee/include/net/http_protocol_handler.inl
Expand Up @@ -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";

Expand Down

0 comments on commit f18a7e3

Please sign in to comment.