summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-08 21:54:20 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-08 21:54:20 +0000
commit67eefea83d6f8fd0859b4a5e2526583c00dac3a1 (patch)
tree0a1b8e13b670b654bd9462bb47b8d2359a39799b /net
parentc82e86b07996c5412c3394ea4c7f78c5d90cb5e6 (diff)
downloadchromium_src-67eefea83d6f8fd0859b4a5e2526583c00dac3a1.zip
chromium_src-67eefea83d6f8fd0859b4a5e2526583c00dac3a1.tar.gz
chromium_src-67eefea83d6f8fd0859b4a5e2526583c00dac3a1.tar.bz2
Update a comment based on our findings today.
Review URL: http://codereview.chromium.org/6463 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3059 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r--net/http/http_transaction_winhttp.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/net/http/http_transaction_winhttp.cc b/net/http/http_transaction_winhttp.cc
index 1808cb8..14d82a6 100644
--- a/net/http/http_transaction_winhttp.cc
+++ b/net/http/http_transaction_winhttp.cc
@@ -1356,10 +1356,10 @@ int HttpTransactionWinHttp::DidReceiveError(DWORD error,
}
if (rv == ERR_SSL_CLIENT_AUTH_CERT_NEEDED) {
// TODO(wtc): Bug 1230409: We don't support SSL client authentication yet.
- // For now we set a null client certificate, which works on Vista and
- // later. On XP, this fails with ERROR_INVALID_PARAMETER (87). This
- // allows us to access servers that request but do not require client
- // certificates.
+ // For now we set a null client certificate, which works on XP SP3, Vista
+ // and later. On XP SP2 and below, this fails with ERROR_INVALID_PARAMETER
+ // (87). This allows us to access servers that request but do not require
+ // client certificates.
if (WinHttpSetOption(request_handle_,
WINHTTP_OPTION_CLIENT_CERT_CONTEXT,
WINHTTP_NO_CLIENT_CERT_CONTEXT, 0)) {