Fixed HTTP header in physfshttpd.c.

This commit is contained in:
Ryan C. Gordon 2008-01-22 03:44:49 +00:00
parent 1aa0511f7b
commit 0ea431927e
2 changed files with 2 additions and 1 deletions

View File

@ -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.

View File

@ -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"
"<html><head><title>404 Not Found</title></head>\n"
"<body>Can't find that.</body></html>\n\n";