mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-03 23:30:46 +00:00
Bug 84375: "CCK -" added before Company identifier (r=bobj)
"CCK-" is added to user agent string only once
This commit is contained in:
parent
e0f848551f
commit
90731c038d
@ -936,10 +936,13 @@ int StartIB(CString parms, WIDGET *curWidget)
|
||||
|
||||
//Check to see if the User Agent string exists and if so then append -CCK to it ;
|
||||
CString userAgent = GetGlobal("OrganizationName");
|
||||
CString tempAgent ="CCK -";
|
||||
if (userAgent)
|
||||
tempAgent += userAgent;
|
||||
SetGlobal("OrganizationName",tempAgent);
|
||||
if (userAgent)
|
||||
{
|
||||
CString templeft = userAgent.Left(5);
|
||||
if ((templeft.CompareNoCase("CCK -")) != 0)
|
||||
userAgent = "CCK -" + userAgent;
|
||||
}
|
||||
SetGlobal("OrganizationName",userAgent);
|
||||
|
||||
// check to see if the bmp for rshell background is bigger than 302KB;
|
||||
HANDLE hFile;
|
||||
|
Loading…
x
Reference in New Issue
Block a user