| Index: net/http/http_auth.cc
|
| diff --git a/net/http/http_auth.cc b/net/http/http_auth.cc
|
| index 35251140f4763431900696d82d451dc5fc08bb9c..5b55a18d338e987dfcc383b9d3b8017681cfa7f9 100644
|
| --- a/net/http/http_auth.cc
|
| +++ b/net/http/http_auth.cc
|
| @@ -76,8 +76,10 @@ HttpAuth::AuthorizationResult HttpAuth::HandleChallengeResponse(
|
| HttpAuth::AUTHORIZATION_RESULT_INVALID;
|
| while (headers->EnumerateHeader(&iter, header_name, &challenge)) {
|
| HttpAuthChallengeTokenizer props(challenge.begin(), challenge.end());
|
| - if (!LowerCaseEqualsASCII(props.scheme(), current_scheme_name.c_str()))
|
| + if (!base::LowerCaseEqualsASCII(props.scheme(),
|
| + current_scheme_name.c_str())) {
|
| continue;
|
| + }
|
| authorization_result = handler->HandleAnotherChallenge(&props);
|
| if (authorization_result != HttpAuth::AUTHORIZATION_RESULT_INVALID) {
|
| *challenge_used = challenge;
|
|
|