Commit 66b4dd28 authored by John R. Sheets's avatar John R. Sheets Committed by Alexandre Julliard

Added "Mime-Version" to standard MIME headers parsed in

HTTP_GetStdHeaderIndex().
parent ec85c6be
......@@ -998,6 +998,8 @@ INT HTTP_GetStdHeaderIndex(LPCSTR lpszField)
index = HTTP_QUERY_ACCEPT_RANGES;
else if (!_stricmp(lpszField,"Expires"))
index = HTTP_QUERY_EXPIRES;
else if (!_stricmp(lpszField,"Mime-Version"))
index = HTTP_QUERY_MIME_VERSION;
else
{
FIXME("Couldn't find %s in standard header table\n", lpszField);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment