From: Jonathan McDowell <noodles@earth.li>
Date: Mon, 31 May 2004 23:47:11 +0000 (+0000)
Subject: cscvs to tla changeset 34
X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/commitdiff_plain/f788fbc43a1a07c2116d3f7cb25d73e66ede7a96?ds=inline

cscvs to tla changeset 34
Author: noodles
Date: 2002/11/15 15:24:49
Correct content-type to use UTF-8 instead of utf8 (pointed out by huggie).
---

diff --git a/getcgi.c b/getcgi.c
index 26c3c50..aa254f8 100644
--- a/getcgi.c
+++ b/getcgi.c
@@ -66,7 +66,7 @@ char *txt2html(const char *string)
  */
 void start_html(const char *title)
 {
-	puts("Content-Type: text/html; charset=utf8\n");
+	puts("Content-Type: text/html; charset=UTF-8\n");
 	puts("<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 3.2 Final//EN'>");
 	puts("<HTML>");
 	puts("<HEAD>");