diff options
author | pixel <pixel> | 2007-08-29 11:17:08 +0000 |
---|---|---|
committer | pixel <pixel> | 2007-08-29 11:17:08 +0000 |
commit | 24fe8e6bd7c217865863b39e25358473af7e4814 (patch) | |
tree | 6a991911c7d70e87a329abc4034e4ef71904a8c6 /lib/HttpServ.cc | |
parent | 8f30c6dd235bdafb9722daf90c0bc38852a1b2b5 (diff) |
Fixing charset name
Diffstat (limited to 'lib/HttpServ.cc')
-rw-r--r-- | lib/HttpServ.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/HttpServ.cc b/lib/HttpServ.cc index 2558509..ecd62c5 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.54 2007-07-23 14:05:42 pixel Exp $ */ +/* $Id: HttpServ.cc,v 1.55 2007-08-29 11:17:08 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=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() : 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() { |