aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2020-03-04 11:31:17 -0500
committerJack Lloyd <[email protected]>2020-03-04 11:31:17 -0500
commit06a55af16fbee536cf3aa53370195b22327ca54f (patch)
tree8585ff8be5b34eb6985ccc9803e44a4636824d74
parentd3f4851e52fb4b099f5b043ed22944f3f17534f8 (diff)
Reorder report from TLS HTTP test server cli
-rw-r--r--src/cli/tls_http_server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/tls_http_server.cpp b/src/cli/tls_http_server.cpp
index 10d8648dd..e6eda4577 100644
--- a/src/cli/tls_http_server.cpp
+++ b/src/cli/tls_http_server.cpp
@@ -291,7 +291,7 @@ class TLS_Asio_HTTP_Session final : public std::enable_shared_from_this<TLS_Asio
{
const std::string http_summary = summarize_request(request);
- const std::string report = http_summary + m_session_summary + m_chello_summary;
+ const std::string report = m_session_summary + m_chello_summary + http_summary;
response << "HTTP/1.0 200 OK\r\n";
response << "Server: " << Botan::version_string() << "\r\n";