urlmon: Make default user agent compatible with IE11.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2021-03-25 19:33:51 +01:00 committed by Alexandre Julliard
parent e5da8dbfb7
commit 266dc7e8e9
1 changed files with 1 additions and 1 deletions

View File

@ -528,7 +528,7 @@ static void ensure_useragent(void)
else
os_type = L"";
swprintf(buf, ARRAY_SIZE(buf), L"Mozilla/4.0 (compatible; MSIE 8.0; Windows %s%d.%d; %sTrident/5.0",
swprintf(buf, ARRAY_SIZE(buf), L"Mozilla/4.0 (compatible; MSIE 7.0; Windows %s%d.%d; %sTrident/7.0",
is_nt, info.dwMajorVersion, info.dwMinorVersion, os_type);
len = lstrlenW(buf);