Tiny fix for my standalone http server.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@6074 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2021-10-05 05:06:10 +00:00
parent 7404d81d0b
commit f3cab7b153
1 changed files with 1 additions and 1 deletions

View File

@ -595,7 +595,7 @@ const char *HTTP_RunClient (HTTP_active_connections_t *cl)
else if (strstr(resource, ".js"))
mimeline = "Content-Type: text/javascript\r\n";
else
mimeline = NULL;
mimeline = "";
//fixme: add connection: keep-alive or whatever so that ie3 is happy...
if (HTTPmarkup>=3)