зеркало из https://github.com/mozilla/gecko-dev.git
Bug 48504 correct user-agent for Windows ME. patch from Frank Faubert <frank@sane.com>
a=brendan, r=brendan,dveditz
This commit is contained in:
Родитель
bfa3219209
Коммит
1e0b99299b
|
@ -723,7 +723,9 @@ nsHTTPHandler::InitUserAgentComponents()
|
|||
mAppOSCPU = "WinNT";
|
||||
}
|
||||
} else if (info.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS) {
|
||||
if (info.dwMinorVersion > 0)
|
||||
if (info.dwMinorVersion == 90)
|
||||
mAppOSCPU = "Win 9x 4.90";
|
||||
else if (info.dwMinorVersion > 0)
|
||||
mAppOSCPU = "Win98";
|
||||
else
|
||||
mAppOSCPU = "Win95";
|
||||
|
|
Загрузка…
Ссылка в новой задаче