Index: net/spdy/spdy_http_stream.cc |
diff --git a/net/spdy/spdy_http_stream.cc b/net/spdy/spdy_http_stream.cc |
index c84ba5caab278160a71521753ca4c45e79bfbf77..dfc241fe67e76628952f5cbe7137fd74679edc36 100644 |
--- a/net/spdy/spdy_http_stream.cc |
+++ b/net/spdy/spdy_http_stream.cc |
@@ -517,8 +517,9 @@ void SpdyHttpStream::GetSSLInfo(SSLInfo* ssl_info) { |
void SpdyHttpStream::GetSSLCertRequestInfo( |
SSLCertRequestInfo* cert_request_info) { |
- DCHECK(stream_.get()); |
- stream_->GetSSLCertRequestInfo(cert_request_info); |
+ // A SPDY stream cannot request client certificates. Client authentication may |
+ // only occur during the initial SSL handshake. |
+ NOTREACHED(); |
} |
bool SpdyHttpStream::IsSpdyHttpStream() const { |