diff --git a/CHANGELOG b/CHANGELOG index 1b4a89d..ebb2348 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -4,6 +4,7 @@ -- stuff in the stable-1.0 branch, backported from 2.0.0 dev branch, etc --- +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 d9a1a5a..09ea040 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";