cscvs to tla changeset 34
authorJonathan McDowell <noodles@earth.li>
Mon, 31 May 2004 23:47:11 +0000 (23:47 +0000)
committerJonathan McDowell <noodles@earth.li>
Mon, 31 May 2004 23:47:11 +0000 (23:47 +0000)
Author: noodles
Date: 2002/11/15 15:24:49
Correct content-type to use UTF-8 instead of utf8 (pointed out by huggie).

getcgi.c

index 26c3c50f5f52cf2b6bce08a0b962458640aa2f81..aa254f84c4bab995c856f870a6b703d939491d16 100644 (file)
--- 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>");