summaryrefslogtreecommitdiff
path: root/lib/httpserver/HTTPServer.cpp
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2015-08-29 08:46:22 +0000
committerChris Wilson <chris+github@qwirx.com>2015-08-29 08:46:22 +0000
commitace361b403a3308d3c94f05c3b099e3feabeb0fd (patch)
tree3806ed819190f9679bd63d731b36c091174b2c0c /lib/httpserver/HTTPServer.cpp
parent161181f9e6f8bad2df42aa7a73ac620452663248 (diff)
Whitespace, import order and comment fixes
Diffstat (limited to 'lib/httpserver/HTTPServer.cpp')
-rw-r--r--lib/httpserver/HTTPServer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/httpserver/HTTPServer.cpp b/lib/httpserver/HTTPServer.cpp
index d36be473..1dcefb06 100644
--- a/lib/httpserver/HTTPServer.cpp
+++ b/lib/httpserver/HTTPServer.cpp
@@ -86,7 +86,7 @@ const ConfigurationVerify *HTTPServer::GetConfigVerify() const
0
}
};
-
+
static ConfigurationVerifyKey verifyrootkeys[] =
{
HTTPSERVER_VERIFY_ROOT_KEYS
@@ -150,10 +150,10 @@ void HTTPServer::Connection(std::auto_ptr<SocketStream> apConn)
// Didn't get request, connection probably closed.
break;
}
-
+
// Generate a response
HTTPResponse response(apConn.get());
-
+
try
{
Handle(request, response);