r919 - branches/stable-1.0 branches/stable-1.0/extras trunk trunk/extras

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Mon Jan 21 22:44:49 EST 2008


Author: icculus
Date: 2008-01-21 22:44:49 -0500 (Mon, 21 Jan 2008)
New Revision: 919

Modified:
   branches/stable-1.0/CHANGELOG
   branches/stable-1.0/extras/physfshttpd.c
   trunk/CHANGELOG.txt
   trunk/extras/physfshttpd.c
Log:
Fixed HTTP header in physfshttpd.c.


Modified: branches/stable-1.0/CHANGELOG
===================================================================
--- branches/stable-1.0/CHANGELOG	2007-12-11 18:54:10 UTC (rev 918)
+++ branches/stable-1.0/CHANGELOG	2008-01-22 03:44:49 UTC (rev 919)
@@ -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.

Modified: branches/stable-1.0/extras/physfshttpd.c
===================================================================
--- branches/stable-1.0/extras/physfshttpd.c	2007-12-11 18:54:10 UTC (rev 918)
+++ branches/stable-1.0/extras/physfshttpd.c	2008-01-22 03:44:49 UTC (rev 919)
@@ -67,7 +67,7 @@
 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";

Modified: trunk/CHANGELOG.txt
===================================================================
--- trunk/CHANGELOG.txt	2007-12-11 18:54:10 UTC (rev 918)
+++ trunk/CHANGELOG.txt	2008-01-22 03:44:49 UTC (rev 919)
@@ -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.

Modified: trunk/extras/physfshttpd.c
===================================================================
--- trunk/extras/physfshttpd.c	2007-12-11 18:54:10 UTC (rev 918)
+++ trunk/extras/physfshttpd.c	2008-01-22 03:44:49 UTC (rev 919)
@@ -67,7 +67,7 @@
 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";




More information about the physfs-commits mailing list