Commit 28c356d7 authored by Davis King's avatar Davis King

Fixed a bug in how the response headers were set.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402993
parent b581b28b
...@@ -392,7 +392,7 @@ namespace dlib ...@@ -392,7 +392,7 @@ namespace dlib
// Set any new headers // Set any new headers
for( typename key_value_map::const_iterator ci = response_headers.begin(); ci != response_headers.end(); ++ci ) for( typename key_value_map::const_iterator ci = response_headers.begin(); ci != response_headers.end(); ++ci )
{ {
out << ci->first << ':' << ci->second << "\r\n"; out << ci->first << ": " << ci->second << "\r\n";
} }
// set any cookies // set any cookies
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment