diff options
| author | Riccardo Spagni <ric@spagni.net> | 2019-03-04 21:33:24 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2019-03-04 21:33:24 +0200 |
| commit | f18a7e39b8ee24c7d6fdff8f7bf2763dc6179d5d (patch) | |
| tree | 4be7961ab51e9f83fea228a1ac30229ed4641ea4 | |
| parent | 2f7108f9d7812ce6084fe5b31bf00cb47bf11e6a (diff) | |
| parent | 7af4fbd4d15e3f5c97906c317623b625d4a1790d (diff) | |
| download | monzero-core-f18a7e39b8ee24c7d6fdff8f7bf2763dc6179d5d.tar.gz monzero-core-f18a7e39b8ee24c7d6fdff8f7bf2763dc6179d5d.tar.xz monzero-core-f18a7e39b8ee24c7d6fdff8f7bf2763dc6179d5d.zip | |
Merge pull request #5160
7af4fbd4 epee: Add space after ':' in additional http response headers (Tom Smeding)
| -rw-r--r-- | contrib/epee/include/net/http_protocol_handler.inl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/epee/include/net/http_protocol_handler.inl b/contrib/epee/include/net/http_protocol_handler.inl index b53bdc200..ae8e43477 100644 --- a/contrib/epee/include/net/http_protocol_handler.inl +++ b/contrib/epee/include/net/http_protocol_handler.inl @@ -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"; |
