From 832cb48664d3e043da24b59d4d93cd458d5bbcad Mon Sep 17 00:00:00 2001 From: "darin%netscape.com" Date: Sat, 23 Nov 2002 01:30:26 +0000 Subject: [PATCH] fixes bug 181440 "UBS E-Banking broken because of regression in http headers" r=morse sr=bz git-svn-id: svn://10.0.0.236/trunk@134352 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/netwerk/protocol/http/src/nsHttpHeaderArray.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/netwerk/protocol/http/src/nsHttpHeaderArray.cpp b/mozilla/netwerk/protocol/http/src/nsHttpHeaderArray.cpp index bbe4d5b31f5..69cebe3f6ce 100644 --- a/mozilla/netwerk/protocol/http/src/nsHttpHeaderArray.cpp +++ b/mozilla/netwerk/protocol/http/src/nsHttpHeaderArray.cpp @@ -167,7 +167,7 @@ nsHttpHeaderArray::ParseHeaderLine(char *line, nsHttpAtom *hdr, char **val) if (val) *val = p; // assign response header - SetHeader(atom, nsDependentCString(p)); + SetHeader(atom, nsDependentCString(p), PR_TRUE); } else LOG(("unknown header; skipping\n"));