| Index: net/http/http_auth_handler_ntlm_win.cc
|
| diff --git a/net/http/http_auth_handler_ntlm_win.cc b/net/http/http_auth_handler_ntlm_win.cc
|
| index 58e563bc56cf72f0e514983a79f0e955d8f3e39a..b58b394f1b8ae26257cda025018456742bdd5088 100644
|
| --- a/net/http/http_auth_handler_ntlm_win.cc
|
| +++ b/net/http/http_auth_handler_ntlm_win.cc
|
| @@ -52,6 +52,7 @@ HttpAuthHandlerNTLM::Factory::~Factory() {
|
| int HttpAuthHandlerNTLM::Factory::CreateAuthHandler(
|
| HttpAuthChallengeTokenizer* challenge,
|
| HttpAuth::Target target,
|
| + const HttpResponseInfo& response_info,
|
| const GURL& origin,
|
| CreateReason reason,
|
| int digest_nonce_count,
|
| @@ -71,7 +72,8 @@ int HttpAuthHandlerNTLM::Factory::CreateAuthHandler(
|
| // method and only constructing when valid.
|
| scoped_ptr<HttpAuthHandler> tmp_handler(new HttpAuthHandlerNTLM(
|
| sspi_library_.get(), max_token_length_, http_auth_preferences()));
|
| - if (!tmp_handler->InitFromChallenge(challenge, target, origin, net_log))
|
| + if (!tmp_handler->InitFromChallenge(challenge, target, response_info, origin,
|
| + net_log))
|
| return ERR_INVALID_RESPONSE;
|
| handler->swap(tmp_handler);
|
| return OK;
|
|
|