Fixed generation of BRPROF cookie string when it's the first cookie.

This commit is contained in:
waterson%netscape.com 1999-04-01 06:42:08 +00:00
Родитель e3c61c8262
Коммит e624048e39
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -1859,7 +1859,8 @@ NET_GetCookie(MWContext * context, char * address)
char* profile;
if (BP_GetProfile(&profile)) {
if (! first)
StrAllocCat(rv, "; BP=");
StrAllocCat(rv, "; ");
StrAllocCat(rv, "BP=");
StrAllocCat(rv, profile);
PL_strfree(profile);
}