From 0ea431927ee8fee03840cb3465db8dbd9cc5ff1b Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 22 Jan 2008 03:44:49 +0000 Subject: [PATCH] Fixed HTTP header in physfshttpd.c. --- CHANGELOG.txt | 1 + extras/physfshttpd.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index eb3f44a..58766cf 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -2,6 +2,7 @@ * CHANGELOG. */ +01212008 - Fixed HTTP header in physfshttpd.c. 12112007 - Fixed incorrect directory test in Windows code (thanks, Dennis!). 10012007 - More mingw32 fixes. 07122007 - Maybe fixed compile on mingw32. diff --git a/extras/physfshttpd.c b/extras/physfshttpd.c index d092073..82dde7e 100644 --- a/extras/physfshttpd.c +++ b/extras/physfshttpd.c @@ -67,7 +67,7 @@ typedef struct static char *txt404 = "HTTP/1.0 404 Not Found\n" "Connection: close\n" -"Content-type: text/html\n" +"Content-Type: text/html; charset=utf-8\n" "\n" "404 Not Found\n" "Can't find that.\n\n";