mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-15 03:00:30 +00:00
r=rickg. replacing a char const w/ an int literal
This commit is contained in:
parent
771d577a8e
commit
2cf1b6fae4
@ -132,7 +132,7 @@ nsresult nsHTTPHeaderArray::SetHeader(nsIAtom* aHeader,
|
||||
// we can't use the standard comma because there
|
||||
// set-cookie headers that include commas in the cookie value
|
||||
// contrary to the specs not allowing it.
|
||||
entry->mValue.Append('\n');
|
||||
entry->mValue.Append(CR);
|
||||
entry->mValue.Append(aValue);
|
||||
} else {
|
||||
// delimit each value from the others using a comma (HTTP spec delimiter)
|
||||
|
Loading…
Reference in New Issue
Block a user