Index: net/spdy/spdy_session.cc |
diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc |
index f9e45816c91eaa9cda0e7b1dd8ce58ac1f67b8b1..a7722f6023c02ead52c2b16d2b30d0ee2a0f6373 100644 |
--- a/net/spdy/spdy_session.cc |
+++ b/net/spdy/spdy_session.cc |
@@ -536,11 +536,12 @@ bool SpdySession::VerifyDomainAuthentication(const std::string& domain) { |
if (!GetSSLInfo(&ssl_info, &was_npn_negotiated, &protocol_negotiated)) |
return true; // This is not a secure session, so all domains are okay. |
+ bool unused = false; |
return !ssl_info.client_cert_sent && |
(enable_credential_frames_ || !ssl_info.channel_id_sent || |
ServerBoundCertService::GetDomainForHost(domain) == |
ServerBoundCertService::GetDomainForHost(host_port_pair().host())) && |
- ssl_info.cert->VerifyNameMatch(domain); |
+ ssl_info.cert->VerifyNameMatch(domain, &unused); |
} |
int SpdySession::GetPushStream( |