Bug 84375: "CCK -" added before Company identifier (r=bobj)

"CCK-" is added to user agent string only once
This commit is contained in:
shrutiv%netscape.com 2001-06-08 23:22:03 +00:00
Родитель bc75f6605c
Коммит baceb25527
1 изменённых файлов: 7 добавлений и 4 удалений

Просмотреть файл

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