From 3c74d6d7b1fdcac6587965b88aaba0f7ea98b5fb 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 --- netwerk/protocol/http/src/nsHttpHeaderArray.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netwerk/protocol/http/src/nsHttpHeaderArray.cpp b/netwerk/protocol/http/src/nsHttpHeaderArray.cpp index bbe4d5b31f50..69cebe3f6ce2 100644 --- a/netwerk/protocol/http/src/nsHttpHeaderArray.cpp +++ b/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"));