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

HTTP_GetStdHeaderIndex().
This commit is contained in:
John R. Sheets 2000-08-03 22:16:39 +00:00 committed by Alexandre Julliard
parent ec85c6be75
commit 66b4dd28cd
1 changed files with 2 additions and 0 deletions

View File

@ -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);