summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpixel <pixel>2007-09-28 09:07:13 +0000
committerpixel <pixel>2007-09-28 09:07:13 +0000
commit6e53dbca553d1d4567d29c70ae767a43be3ad3d9 (patch)
tree43afa966061948d9ba48f4f65a8dad633b23dec6
parent0150e8b7a7e4fc00021e79c297bb5cd702318b1f (diff)
Beeing a little bit picky about encoding.
-rw-r--r--lib/HttpServ.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/HttpServ.cc b/lib/HttpServ.cc
index 6f4f046..ff61f1b 100644
--- a/lib/HttpServ.cc
+++ b/lib/HttpServ.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: HttpServ.cc,v 1.56 2007-09-28 09:05:34 pixel Exp $ */
+/* $Id: HttpServ.cc,v 1.57 2007-09-28 09:07:13 pixel Exp $ */
#include "sha1.h"
#ifdef HAVE_CONFIG_H
@@ -616,7 +616,7 @@ class BuildHttpResponse : public Task {
Task * t;
};
-HttpResponse::HttpResponse() : mime_type("text/html; charset=iso-8859-1"), location(""), server_name("GruiK Server v0.2"), return_code(HTTP_200_OK), last_modified(time(NULL)), cache(true), already_prepared(false), builder(0) {
+HttpResponse::HttpResponse() : mime_type("text/html; charset=iso8859-1"), location(""), server_name("GruiK Server v0.2"), return_code(HTTP_200_OK), last_modified(time(NULL)), cache(true), already_prepared(false), builder(0) {
}
HttpResponse::~HttpResponse() {