diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-20 21:12:10 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-20 21:12:10 +0000 |
commit | 5d0c60c865e8c3f5414bbe4f571245471b8e21a0 (patch) | |
tree | 7fbb0814c5fba9372d4a5b9e9b3626fe9a64aabb /chrome_frame/http_negotiate.cc | |
parent | 0ec9236f670f1e2e584289dcd91522d97dc3d3b8 (diff) | |
download | chromium_src-5d0c60c865e8c3f5414bbe4f571245471b8e21a0.zip chromium_src-5d0c60c865e8c3f5414bbe4f571245471b8e21a0.tar.gz chromium_src-5d0c60c865e8c3f5414bbe4f571245471b8e21a0.tar.bz2 |
Change the expectations of the BeginningTransaction unit test to expect the headers to be terminated by
a single \r\n combination as wininet adds the terminating \r\n at the end while sending the headers out.
TBR=stoyan
Review URL: http://codereview.chromium.org/2888019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53101 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/http_negotiate.cc')
-rw-r--r-- | chrome_frame/http_negotiate.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome_frame/http_negotiate.cc b/chrome_frame/http_negotiate.cc index b39312d..db51fd5 100644 --- a/chrome_frame/http_negotiate.cc +++ b/chrome_frame/http_negotiate.cc @@ -140,7 +140,7 @@ std::string AppendCFUserAgentString(LPCWSTR headers, } new_headers += "User-Agent: " + user_agent_value; - new_headers += "\r\n\r\n"; + new_headers += "\r\n"; return new_headers; } |