From feb1ebee778c60a705da89795741030bb85b3af7 Mon Sep 17 00:00:00 2001 From: "waterson%netscape.com" Date: Thu, 1 Apr 1999 06:42:08 +0000 Subject: [PATCH] Fixed generation of BRPROF cookie string when it's the first cookie. git-svn-id: svn://10.0.0.236/trunk@25826 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/network/protocol/http/mkaccess.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mozilla/network/protocol/http/mkaccess.c b/mozilla/network/protocol/http/mkaccess.c index f9399cc2dc9..d850c2c4cf3 100644 --- a/mozilla/network/protocol/http/mkaccess.c +++ b/mozilla/network/protocol/http/mkaccess.c @@ -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); }