From da525eb8dcabd754d0b571d429f29791dfd969a3 Mon Sep 17 00:00:00 2001 From: Patrick Niklaus Date: Fri, 1 Apr 2016 01:14:14 +0200 Subject: [PATCH] Fix code of InternalError --- src/server/http/reply.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/http/reply.cpp b/src/server/http/reply.cpp index 88478f9b4..d279417e0 100644 --- a/src/server/http/reply.cpp +++ b/src/server/http/reply.cpp @@ -12,7 +12,7 @@ namespace http const char ok_html[] = ""; const char bad_request_html[] = ""; const char internal_server_error_html[] = - "{\"code\": \"internal-error\",\"message\":\"Internal Server Error\"}"; + "{\"code\": \"InternalError\",\"message\":\"Internal Server Error\"}"; const char seperators[] = {':', ' '}; const char crlf[] = {'\r', '\n'}; const std::string http_ok_string = "HTTP/1.0 200 OK\r\n";